From 289de18850914c9e513ff908001643974608c87d Mon Sep 17 00:00:00 2001 From: Jay Roebuck Date: Tue, 9 Jul 2024 14:35:11 -0400 Subject: [PATCH] update action dependencies --- .github/workflows/DockerBuild.LambdaBaseImage.yaml | 10 +++++----- .github/workflows/DockerBuild.NotebookImage.yaml | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/DockerBuild.LambdaBaseImage.yaml b/.github/workflows/DockerBuild.LambdaBaseImage.yaml index 0bc549345b..dd603c35b9 100644 --- a/.github/workflows/DockerBuild.LambdaBaseImage.yaml +++ b/.github/workflows/DockerBuild.LambdaBaseImage.yaml @@ -28,14 +28,14 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Docker Buildx id: buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Login to Github Packages - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} @@ -43,7 +43,7 @@ jobs: - name: Docker meta id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: images: | ghcr.io/esri/arcgis-python-api-lambda @@ -55,7 +55,7 @@ jobs: - id: docker_build name: Build image and push to GitHub Container Registry - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v6 with: # relative path to the place where source code with Dockerfile is located context: . diff --git a/.github/workflows/DockerBuild.NotebookImage.yaml b/.github/workflows/DockerBuild.NotebookImage.yaml index 47b961c835..d4c7c58e2d 100644 --- a/.github/workflows/DockerBuild.NotebookImage.yaml +++ b/.github/workflows/DockerBuild.NotebookImage.yaml @@ -32,10 +32,10 @@ jobs: - name: Set up Docker Buildx id: buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Login to Github Packages - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} @@ -43,7 +43,7 @@ jobs: - name: Docker meta id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: images: | ghcr.io/esri/arcgis-python-api-notebook @@ -55,7 +55,7 @@ jobs: - id: docker_build name: Build image and push to GitHub Container Registry - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v6 with: # relative path to the place where source code with Dockerfile is located context: ./docker