6464 save-cache : true
6565
6666 steps :
67- - uses : actions/checkout@v4
67+ - uses : actions/checkout@v6
6868 - uses : rui314/setup-mold@v1
6969
7070 - name : Enable Rust Caching
9595 done
9696
9797 - name : Upload Artifacts
98- uses : actions/upload-artifact@v4
98+ uses : actions/upload-artifact@v5
9999 with :
100100 name : amd-${{ matrix.binary }}
101101 path : |
@@ -127,7 +127,7 @@ jobs:
127127 save-cache : true
128128
129129 steps :
130- - uses : actions/checkout@v4
130+ - uses : actions/checkout@v6
131131 - uses : rui314/setup-mold@v1
132132
133133 - name : Enable Rust Caching
@@ -156,7 +156,7 @@ jobs:
156156 done
157157
158158 - name : Upload Artifacts
159- uses : actions/upload-artifact@v4
159+ uses : actions/upload-artifact@v5
160160 with :
161161 name : arm-${{ matrix.binary }}
162162 path : |
@@ -186,10 +186,10 @@ jobs:
186186
187187 steps :
188188 - name : Checkout Repository
189- uses : actions/checkout@v4
189+ uses : actions/checkout@v6
190190
191191 - name : Download executables AMD
192- uses : actions/download-artifact@v4
192+ uses : actions/download-artifact@v6
193193 with :
194194 pattern : amd-*
195195 path : target/amd64/release
@@ -230,15 +230,15 @@ jobs:
230230
231231 - name : Upload docker image artifact (on PRs)
232232 if : github.event_name == 'pull_request'
233- uses : actions/upload-artifact@v4
233+ uses : actions/upload-artifact@v5
234234 with :
235235 name : ${{ matrix.service }}-docker-image
236236 path : ${{ runner.temp }}/${{ matrix.service }}.tar
237237 if-no-files-found : error
238238
239239 - name : Build and push docker (non-PR)
240240 if : github.event_name != 'pull_request'
241- uses : docker/build-push-action@v5
241+ uses : docker/build-push-action@v6
242242 id : build
243243 with :
244244 context : .
@@ -261,7 +261,7 @@ jobs:
261261
262262 - name : Upload digest
263263 if : github.event_name != 'pull_request'
264- uses : actions/upload-artifact@v4
264+ uses : actions/upload-artifact@v5
265265 with :
266266 name : " digests-${{ matrix.service }}-amd64"
267267 path : " ${{ runner.temp }}/digests/*"
@@ -294,10 +294,10 @@ jobs:
294294
295295 steps :
296296 - name : Checkout Repository
297- uses : actions/checkout@v4
297+ uses : actions/checkout@v6
298298
299299 - name : Download executables ARM
300- uses : actions/download-artifact@v4
300+ uses : actions/download-artifact@v6
301301 with :
302302 pattern : arm-*
303303 path : target/arm64/release
@@ -342,7 +342,7 @@ jobs:
342342 ls -lah "${digest_dir}"
343343
344344 - name : Upload digest
345- uses : actions/upload-artifact@v4
345+ uses : actions/upload-artifact@v5
346346 with :
347347 name : " digests-${{ matrix.service }}-arm64"
348348 path : " ${{ runner.temp }}/digests/*"
@@ -388,7 +388,7 @@ jobs:
388388 password : ${{ secrets.GITHUB_TOKEN }}
389389
390390 - name : Download digests
391- uses : actions/download-artifact@v4
391+ uses : actions/download-artifact@v6
392392 with :
393393 pattern : " digests-${{ matrix.service }}-*"
394394 path : " ${{ runner.temp }}/digests"
@@ -424,11 +424,11 @@ jobs:
424424 runs-on : ubuntu-latest
425425 needs : [build-dockers-amd]
426426 steps :
427- - uses : actions/checkout@v4
427+ - uses : actions/checkout@v6
428428 - uses : taiki-e/install-action@just
429429
430430 - name : Download artifacts
431- uses : actions/download-artifact@v4
431+ uses : actions/download-artifact@v6
432432 with :
433433 path : ${{ runner.temp }}/docker-images
434434 pattern : " *-docker-image"
@@ -465,7 +465,7 @@ jobs:
465465 runs-on : ubuntu-latest
466466 needs : [build-dockers-amd, create-multiplatform-docker-image]
467467 steps :
468- - uses : actions/checkout@v4
468+ - uses : actions/checkout@v6
469469 - uses : taiki-e/install-action@just
470470
471471 - name : Set docker image tag for compose
0 commit comments