From 5c29bb60b6f3c0f8de4a780924261a251e730df1 Mon Sep 17 00:00:00 2001 From: Dmytro Sirant Date: Wed, 8 Jul 2026 13:32:35 +1000 Subject: [PATCH] ci: bump artifact actions to node24 runtime, silence deprecation warning actions/upload-artifact@v4 and actions/download-artifact@v6 both declare node20, which GitHub Actions now force-runs on node24 with a deprecation warning. Bumped to v7/v8 respectively, which declare node24 natively. Inputs used (name, path, pattern, merge-multiple, if-no-files-found, retention-days) are unchanged across the majors. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b0f092d..1473032 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -106,7 +106,7 @@ jobs: touch "/tmp/digests/${digest#sha256:}" - name: Upload digest - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: digests-${{ env.PLATFORM_PAIR }} path: /tmp/digests/* @@ -122,7 +122,7 @@ jobs: image-digest: ${{ steps.merge.outputs.digest }} steps: - name: Download digests - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v8 with: path: /tmp/digests pattern: digests-*