Skip to content

Commit 7a80023

Browse files
Merge pull request #12 from simonpasquier/update-ci-actions
.github: update GitHub actions
2 parents 3a3ae13 + 41974ee commit 7a80023

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/docker-publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout code
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v5
2828

2929
- name: Test build
3030
run: make build
@@ -65,32 +65,32 @@ jobs:
6565
echo ::set-output name=tags::${TAGS}
6666
6767
- name: Checkout code
68-
uses: actions/checkout@v2
68+
uses: actions/checkout@v5
6969

7070
- name: Set up QEMU
7171
id: qemu
72-
uses: docker/setup-qemu-action@v1
72+
uses: docker/setup-qemu-action@v3
7373
with:
7474
platforms: arm64,ppc64le,s390x
7575

7676
- name: Set up Docker Buildx
7777
id: buildx
78-
uses: docker/setup-buildx-action@v1
78+
uses: docker/setup-buildx-action@v3
7979
with:
8080
install: true
8181

8282
- name: List available platforms
8383
run: echo ${{ steps.buildx.outputs.platforms }}
8484

8585
- name: Login to GitHub Container Registry
86-
uses: docker/login-action@v1
86+
uses: docker/login-action@v3
8787
with:
8888
registry: ghcr.io
8989
username: ${{ github.repository_owner }}
9090
password: ${{ secrets.GITHUB_TOKEN }}
9191

9292
- name: Build and push
93-
uses: docker/build-push-action@v2
93+
uses: docker/build-push-action@v6
9494
with:
9595
context: .
9696
file: ./Dockerfile

0 commit comments

Comments
 (0)