8484 chmod -R u=rwX,go=rX assets-dist/
8585
8686 - name : Upload assets
87- uses : actions/upload-artifact@v4.6.2
87+ uses : actions/upload-artifact@v5.0.0
8888 with :
8989 name : assets
9090 path : assets-dist
@@ -143,7 +143,7 @@ jobs:
143143 -p mas-cli
144144
145145 - name : Upload binary artifact
146- uses : actions/upload-artifact@v4.6.2
146+ uses : actions/upload-artifact@v5.0.0
147147 with :
148148 name : binary-${{ matrix.target }}
149149 path : target/${{ matrix.target }}/release/mas-cli
@@ -162,19 +162,19 @@ jobs:
162162
163163 steps :
164164 - name : Download assets
165- uses : actions/download-artifact@v5
165+ uses : actions/download-artifact@v6
166166 with :
167167 name : assets
168168 path : assets-dist
169169
170170 - name : Download binary x86_64
171- uses : actions/download-artifact@v5
171+ uses : actions/download-artifact@v6
172172 with :
173173 name : binary-x86_64-unknown-linux-gnu
174174 path : binary-x86_64
175175
176176 - name : Download binary aarch64
177- uses : actions/download-artifact@v5
177+ uses : actions/download-artifact@v6
178178 with :
179179 name : binary-aarch64-unknown-linux-gnu
180180 path : binary-aarch64
@@ -192,13 +192,13 @@ jobs:
192192 done
193193
194194 - name : Upload aarch64 archive
195- uses : actions/upload-artifact@v4.6.2
195+ uses : actions/upload-artifact@v5.0.0
196196 with :
197197 name : mas-cli-aarch64-linux
198198 path : mas-cli-aarch64-linux.tar.gz
199199
200200 - name : Upload x86_64 archive
201- uses : actions/upload-artifact@v4.6.2
201+ uses : actions/upload-artifact@v5.0.0
202202 with :
203203 name : mas-cli-x86_64-linux
204204 path : mas-cli-x86_64-linux.tar.gz
@@ -226,7 +226,7 @@ jobs:
226226 steps :
227227 - name : Docker meta
228228 id : meta
229- uses : docker/metadata-action@v5.8 .0
229+ uses : docker/metadata-action@v5.9 .0
230230 with :
231231 images : " ${{ env.IMAGE }}"
232232 bake-target : docker-metadata-action
@@ -242,7 +242,7 @@ jobs:
242242
243243 - name : Docker meta (debug variant)
244244 id : meta-debug
245- uses : docker/metadata-action@v5.8 .0
245+ uses : docker/metadata-action@v5.9 .0
246246 with :
247247 images : " ${{ env.IMAGE }}"
248248 bake-target : docker-metadata-action-debug
@@ -258,7 +258,7 @@ jobs:
258258 type=sha
259259
260260 - name : Setup Cosign
261- uses : sigstore/cosign-installer@v3.9.2
261+ uses : sigstore/cosign-installer@v4.0.0
262262
263263 - name : Set up Docker Buildx
264264@@ -268,7 +268,7 @@ jobs:
268268 mirrors = ["mirror.gcr.io"]
269269
270270 - name : Login to GitHub Container Registry
271- uses : docker/login-action@v3.5 .0
271+ uses : docker/login-action@v3.6 .0
272272 with :
273273 registry : ghcr.io
274274 username : ${{ github.repository_owner }}
@@ -320,14 +320,14 @@ jobs:
320320 - build-image
321321 steps :
322322 - name : Download the artifacts from the previous job
323- uses : actions/download-artifact@v5
323+ uses : actions/download-artifact@v6
324324 with :
325325 pattern : mas-cli-*
326326 path : artifacts
327327 merge-multiple : true
328328
329329 - name : Prepare a release
330- uses : softprops/action-gh-release@v2.3 .2
330+ uses : softprops/action-gh-release@v2.4 .2
331331 with :
332332 generate_release_notes : true
333333 body : |
@@ -382,21 +382,21 @@ jobs:
382382 .github/scripts
383383
384384 - name : Download the artifacts from the previous job
385- uses : actions/download-artifact@v5
385+ uses : actions/download-artifact@v6
386386 with :
387387 pattern : mas-cli-*
388388 path : artifacts
389389 merge-multiple : true
390390
391391 - name : Update unstable git tag
392- uses : actions/github-script@v7 .0.1
392+ uses : actions/github-script@v8 .0.0
393393 with :
394394 script : |
395395 const script = require('./.github/scripts/update-unstable-tag.cjs');
396396 await script({ core, github, context });
397397
398398 - name : Update unstable release
399- uses : softprops/action-gh-release@v2.3 .2
399+ uses : softprops/action-gh-release@v2.4 .2
400400 with :
401401 name : " Unstable build"
402402 tag_name : unstable
@@ -460,7 +460,7 @@ jobs:
460460 .github/scripts
461461
462462 - name : Remove label and comment
463- uses : actions/github-script@v7 .0.1
463+ uses : actions/github-script@v8 .0.0
464464 env :
465465 BUILD_IMAGE_MANIFEST : ${{ needs.build-image.outputs.metadata }}
466466 with :
0 commit comments