@@ -12,29 +12,29 @@ jobs:
1212 runs-on : ubuntu-latest
1313 steps :
1414 - name : checkout
15- uses : actions/checkout@v3
15+ uses : actions/checkout@v4
1616 with :
1717 fetch-depth : 0
1818
19- - uses : docker/setup-qemu-action@v2.1.0
20- - uses : docker/setup-buildx-action@v2.5.0
19+ - uses : docker/setup-qemu-action@v3
20+ - uses : docker/setup-buildx-action@v3
2121
2222 - name : Log in to the ghcr
23- uses : docker/login-action@v2.1.0
23+ uses : docker/login-action@v3
2424 with :
2525 registry : ghcr.io
2626 username : ${{ github.actor }}
2727 password : ${{ secrets.GITHUB_TOKEN }}
2828
2929 - name : Log in to the docker
30- uses : docker/login-action@v2.1.0
30+ uses : docker/login-action@v3
3131 with :
3232 username : ${{ secrets.DOCKER_USERNAME }}
3333 password : ${{ secrets.DOCKER_PASSWORD }}
3434
3535 - name : Docker meta
3636 id : meta
37- uses : docker/metadata-action@v4.4.0
37+ uses : docker/metadata-action@v5
3838 with :
3939 images : |
4040 ghcr.io/${{ github.repository }}
4545 - name : Docker meta for debug version
4646 if : ${{ github.ref == 'refs/heads/master' }}
4747 id : debug-meta
48- uses : docker/metadata-action@v4.4.0
48+ uses : docker/metadata-action@v5
4949 with :
5050 images : |
5151 ghcr.io/${{ github.repository }}
5555
5656 - name : Build and push image
5757 if : ${{ steps.meta.outputs.tags != '' }}
58- uses : docker/build-push-action@v4.0.0
58+ uses : docker/build-push-action@v5
5959 with :
6060 context : " ."
6161 platforms : linux/amd64,linux/arm64
6464
6565 - name : " [debug version] Build and push image"
6666 if : ${{ github.ref == 'refs/heads/master' }}
67- uses : docker/build-push-action@v4.0.0
67+ uses : docker/build-push-action@v5
6868 with :
6969 context : " ."
7070 platforms : linux/amd64,linux/arm64
0 commit comments