Skip to content

Commit 2f1f7eb

Browse files
Danielius1922Daniel Adam
authored and
Daniel Adam
committed
Update GitHub actions
docker/build-push-action v4 -> v5 docker/login-action v2 -> v3 docker/metadata-action v4 -> v5 docker/setup-buildx-action v2 -> v3 docker/setup-qemu-action v2 -> v3
1 parent 9a01876 commit 2f1f7eb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/publishDockerImages.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ jobs:
3939
uses: actions/checkout@v4
4040

4141
- name: Set up QEMU
42-
uses: docker/setup-qemu-action@v2
42+
uses: docker/setup-qemu-action@v3
4343

4444
- name: Set up Docker Buildx
4545
id: buildx
46-
uses: docker/setup-buildx-action@v2
46+
uses: docker/setup-buildx-action@v3
4747

4848
- name: Log in to the Container registry
49-
uses: docker/login-action@v2
49+
uses: docker/login-action@v3
5050
with:
5151
registry: ${{ env.REGISTRY }}
5252
username: ${{ github.actor }}
@@ -58,7 +58,7 @@ jobs:
5858

5959
- name: Extract metadata (tags, labels) for docker image
6060
id: meta
61-
uses: docker/metadata-action@v4
61+
uses: docker/metadata-action@v5
6262
with:
6363
images: ${{ env.REGISTRY }}/${{ github.repository }}/${{ matrix.name }}
6464
tags: |
@@ -71,7 +71,7 @@ jobs:
7171
type=sha,enable=${{ startsWith(steps.vars.outputs.branch, env.VNEXT_BRANCH) }},prefix=vnext-,format=short
7272
7373
- name: Build and push docker image
74-
uses: docker/build-push-action@v4
74+
uses: docker/build-push-action@v5
7575
with:
7676
context: ./
7777
platforms: linux/amd64,linux/arm64

0 commit comments

Comments
 (0)