Skip to content

Commit 6ff1bf0

Browse files
jeanp413mustard-mh
authored andcommitted
Update build.yml workflow
1 parent 9d6334f commit 6ff1bf0

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,30 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
arch: [bionic-x64, buster-arm64, buster-armhf, centos7-devtoolset8-x64, centos7-devtoolset8-arm64]
14+
include:
15+
- arch: centos7-devtoolset8-arm64
16+
qemu: true
1417

1518
steps:
16-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
1720

1821
- name: Set up QEMU
19-
uses: docker/setup-qemu-action@v1
22+
uses: docker/setup-qemu-action@v2
2023
if: matrix.qemu == 'true'
2124

2225
- name: Set up Docker Buildx
23-
uses: docker/setup-buildx-action@v1
26+
uses: docker/setup-buildx-action@v2
2427
with:
2528
install: true
2629

2730
- name: Login to DockerHub
28-
uses: docker/login-action@v1
31+
uses: docker/login-action@v2
2932
with:
3033
username: ${{ secrets.DOCKERHUB_USERNAME }}
3134
password: ${{ secrets.DOCKERHUB_TOKEN }}
3235

3336
- name: Build and push
34-
uses: docker/build-push-action@v2
37+
uses: docker/build-push-action@v4
3538
with:
3639
context: ${{ matrix.arch }}
3740
file: ${{ matrix.arch }}/Dockerfile

0 commit comments

Comments
 (0)