From e6dd568e05300faaf1bc5a9f6609c52cc8b8385a Mon Sep 17 00:00:00 2001 From: Shane Wall Date: Sun, 17 May 2026 19:47:28 +1000 Subject: [PATCH] chore(ci): update release artifact actions Bump the release workflow to actions/upload-artifact@v7 and actions/download-artifact@v8 on current main. This carries forward the relevant Dependabot updates from stale PRs #84 and #85 without reintroducing deleted workflow files from their old branches. Validation: actionlint .github/workflows/release.yml; git diff --check. --- .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 a936939..aec9b6f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -104,7 +104,7 @@ jobs: Compress-Archive -Path "staging/${{ matrix.binary }}" -DestinationPath "orbit-${{ github.ref_name }}-${{ matrix.target }}.zip" - name: Upload artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: orbit-${{ matrix.target }} path: orbit-${{ github.ref_name }}-${{ matrix.target }}.* @@ -119,7 +119,7 @@ jobs: uses: actions/checkout@v6 - name: Download all artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: path: artifacts