From d34c7f1b6f6b7ddeb35b84b477b03936b7a86194 Mon Sep 17 00:00:00 2001 From: Val Alexander <68980965+BunsDev@users.noreply.github.com> Date: Thu, 11 Jun 2026 01:06:48 -0500 Subject: [PATCH] chore(ci): bump artifact actions to Node 24 runtimes upload-artifact v5 and download-artifact v6 still declare node20, which GitHub deprecates on runners June 16, 2026. v7/v8 are the node24 majors; our usage (named single-binary artifacts, download-all into a directory) is unaffected by the ESM/direct-upload changes. Co-Authored-By: Claude Fable 5 --- .github/workflows/patch-release.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/patch-release.yml b/.github/workflows/patch-release.yml index ef15b05c..a6438be9 100644 --- a/.github/workflows/patch-release.yml +++ b/.github/workflows/patch-release.yml @@ -194,7 +194,7 @@ jobs: "stage/${{ matrix.artifact }}/coven-code${{ matrix.ext }}" - name: Upload artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact }} path: stage/${{ matrix.artifact }}/coven-code${{ matrix.ext }} @@ -210,7 +210,7 @@ jobs: fetch-depth: 0 - name: Download all artifacts - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v8 with: path: artifacts diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e9cb2270..e30eec64 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -177,7 +177,7 @@ jobs: "stage/${{ matrix.artifact }}/coven-code${{ matrix.ext }}" - name: Upload artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact }} path: stage/${{ matrix.artifact }}/coven-code${{ matrix.ext }} @@ -195,7 +195,7 @@ jobs: persist-credentials: false - name: Download all artifacts - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v8 with: path: artifacts