From 93c33c41263f5ed9d292d037bbdd40d0be217e18 Mon Sep 17 00:00:00 2001 From: Val Enfys Date: Wed, 2 Sep 2026 14:58:13 +0100 Subject: [PATCH] Bump artifact actions to fix Node.js 20 deprecation warnings actions/upload-artifact@v4 and actions/download-artifact@v4 still declare node20 as their runtime, which GitHub now flags as deprecated (runs are force-upgraded to node24 for now). Bumping to v7/v8 respectively picks up versions that declare node24 natively; neither changes the inputs this workflow uses (name, path, if-no-files-found, merge-multiple). Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01AKmYgyL2p8FVFu9Wx13t4K --- .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 516349f..8fd820f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -77,7 +77,7 @@ jobs: Remove-Item -Recurse -Force $staging } - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: ${{ matrix.os }} path: dist/* @@ -92,7 +92,7 @@ jobs: with: fetch-depth: 0 - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v8 with: path: dist merge-multiple: true