From a1fa8bac5dbb1e94ad8ccb7facd57071e9c427ce Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Wed, 16 Sep 2026 10:27:53 +0000 Subject: [PATCH] chore(ci): bump official GitHub Actions to Node 24 runtimes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Silence the Node.js 20 deprecation warning by pinning checkout@v5, upload-artifact@v6, and download-artifact@v6. Co-authored-by: MichaƂ Komor --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0024b7a..a4b3582 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ jobs: platform: [windows-latest, windows-11-arm, ubuntu-22.04, ubuntu-22.04-arm, macos-26-intel, macos-14] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Resolve build metadata shell: bash @@ -146,7 +146,7 @@ jobs: tar -czf "release-payloads/${{ env.PLUGIN_NAME }}-${{ env.PACKAGE_SUFFIX }}.tar.gz" -C "${{ env.ARTIFACT_PATH }}" . - name: Upload artifact (${{ matrix.plugin }}) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ env.PLUGIN_NAME }}-${{ env.PACKAGE_SUFFIX }} path: release-payloads/${{ env.PLUGIN_NAME }}-${{ env.PACKAGE_SUFFIX }}.tar.gz @@ -193,7 +193,7 @@ jobs: fi - name: Download release artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: path: artifacts