@@ -53,18 +53,18 @@ jobs:
5353 name : arm64
5454 steps :
5555 - name : Checkout repository
56- uses : actions/checkout@v4
56+ uses : actions/checkout@v6
5757 - name : Set up Docker Buildx
58- uses : docker/setup-buildx-action@v3
58+ uses : docker/setup-buildx-action@v4
5959 - name : Log in to GHCR
60- uses : docker/login-action@v3
60+ uses : docker/login-action@v4
6161 with :
6262 registry : ghcr.io
6363 username : ${{ github.actor }}
6464 password : ${{ secrets.GITHUB_TOKEN }}
6565 - name : Build and push by digest
6666 id : build
67- uses : docker/build-push-action@v6
67+ uses : docker/build-push-action@v7
6868 with :
6969 context : .
7070 file : docker/Dockerfile
7878 digest="${{ steps.build.outputs.digest }}"
7979 touch "/tmp/digests/${digest#sha256:}"
8080 - name : Upload digest
81- uses : actions/upload-artifact@v4
81+ uses : actions/upload-artifact@v7
8282 with :
8383 name : digest-${{ matrix.name }}
8484 path : /tmp/digests/*
@@ -99,24 +99,24 @@ jobs:
9999 packages : write
100100 steps :
101101 - name : Download digests
102- uses : actions/download-artifact@v4
102+ uses : actions/download-artifact@v8
103103 with :
104104 path : /tmp/digests
105105 pattern : digest-*
106106 merge-multiple : true
107107 - name : Docker metadata
108108 id : meta
109- uses : docker/metadata-action@v5
109+ uses : docker/metadata-action@v6
110110 with :
111111 images : ghcr.io/${{ github.repository }}
112112 tags : |
113113 type=edge,branch=main
114114 type=ref,event=pr
115115 type=raw,value=${{ needs.release-please.outputs.version }},enable=${{ needs.release-please.outputs.release_created == 'true' }}
116116 - name : Set up Docker Buildx
117- uses : docker/setup-buildx-action@v3
117+ uses : docker/setup-buildx-action@v4
118118 - name : Log in to GHCR
119- uses : docker/login-action@v3
119+ uses : docker/login-action@v4
120120 with :
121121 registry : ghcr.io
122122 username : ${{ github.actor }}
0 commit comments