Skip to content

Commit 289de18

Browse files
committed
update action dependencies
1 parent fe9c72a commit 289de18

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/DockerBuild.LambdaBaseImage.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@ jobs:
2828

2929
steps:
3030
- name: Checkout code
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3232

3333
- name: Set up Docker Buildx
3434
id: buildx
35-
uses: docker/setup-buildx-action@v2
35+
uses: docker/setup-buildx-action@v3
3636

3737
- name: Login to Github Packages
38-
uses: docker/login-action@v2
38+
uses: docker/login-action@v3
3939
with:
4040
registry: ghcr.io
4141
username: ${{ github.actor }}
4242
password: ${{ secrets.GITHUB_TOKEN }}
4343

4444
- name: Docker meta
4545
id: meta
46-
uses: docker/metadata-action@v4
46+
uses: docker/metadata-action@v5
4747
with:
4848
images: |
4949
ghcr.io/esri/arcgis-python-api-lambda
@@ -55,7 +55,7 @@ jobs:
5555
5656
- id: docker_build
5757
name: Build image and push to GitHub Container Registry
58-
uses: docker/build-push-action@v4
58+
uses: docker/build-push-action@v6
5959
with:
6060
# relative path to the place where source code with Dockerfile is located
6161
context: .

.github/workflows/DockerBuild.NotebookImage.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ jobs:
3232

3333
- name: Set up Docker Buildx
3434
id: buildx
35-
uses: docker/setup-buildx-action@v2
35+
uses: docker/setup-buildx-action@v3
3636

3737
- name: Login to Github Packages
38-
uses: docker/login-action@v2
38+
uses: docker/login-action@v3
3939
with:
4040
registry: ghcr.io
4141
username: ${{ github.actor }}
4242
password: ${{ secrets.GITHUB_TOKEN }}
4343

4444
- name: Docker meta
4545
id: meta
46-
uses: docker/metadata-action@v4
46+
uses: docker/metadata-action@v5
4747
with:
4848
images: |
4949
ghcr.io/esri/arcgis-python-api-notebook
@@ -55,7 +55,7 @@ jobs:
5555
5656
- id: docker_build
5757
name: Build image and push to GitHub Container Registry
58-
uses: docker/build-push-action@v4
58+
uses: docker/build-push-action@v6
5959
with:
6060
# relative path to the place where source code with Dockerfile is located
6161
context: ./docker

0 commit comments

Comments
 (0)