Skip to content

Commit c49b60b

Browse files
Upgrade Deploy workflow to new actions versions
1 parent 8206b61 commit c49b60b

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/deploy.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,23 +24,22 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828
- name: Set up QEMU
29-
uses: docker/setup-qemu-action@v2
29+
uses: docker/setup-qemu-action@v3
3030
- name: Set up Docker Buildx
31-
uses: docker/setup-buildx-action@v2
31+
uses: docker/setup-buildx-action@v3
3232
- name: Login to DockerHub
33-
uses: docker/login-action@v2
33+
uses: docker/login-action@v3
3434
with:
3535
username: ${{ secrets.DOCKER_USERNAME }}
3636
password: ${{ secrets.DOCKER_PASSWORD }}
3737
- name: Build and push
3838
id: docker_build
39-
uses: docker/build-push-action@v2
39+
uses: docker/build-push-action@v6
4040
with:
4141
push: true
4242
platforms: linux/amd64,linux/arm64
4343
tags: |
4444
${{env.IMAGE_NAME}}:${{github.sha}}
4545
${{env.IMAGE_NAME}}:master
46-

0 commit comments

Comments
 (0)