Skip to content

Commit 670e723

Browse files
committed
Fix deprecated Github Actions base on Node 16
1 parent 2dfa2b1 commit 670e723

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/build.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,15 @@ jobs:
6060
path: dist
6161

6262
- name: Set up QEMU
63-
uses: docker/setup-qemu-action@v2
63+
uses: docker/setup-qemu-action@v3
64+
with:
65+
platforms: linux/amd64,linux/arm64
6466

6567
- name: Set up Docker Buildx
66-
uses: docker/setup-buildx-action@v2
68+
uses: docker/setup-buildx-action@v3
6769

6870
- name: Login to GitHub Container Registry
69-
uses: docker/login-action@v2
71+
uses: docker/login-action@v3
7072
with:
7173
registry: ghcr.io
7274
username: ${{ github.actor }}
@@ -97,7 +99,7 @@ jobs:
9799
docker buildx ls
98100
99101
- name: Build and Publish Docker image
100-
uses: docker/build-push-action@v3
102+
uses: docker/build-push-action@v5
101103
with:
102104
context: .
103105
push: true

0 commit comments

Comments
 (0)