From b77dc41a541f4811bcd9d39c83c9a344cce1cf5f Mon Sep 17 00:00:00 2001 From: Ivan Murzak Date: Mon, 20 Jul 2026 05:17:47 -0700 Subject: [PATCH] fix(ci): download-artifact v6 -> v7 (v6 is still Node20) actions/download-artifact@v6 declares runs.using: node20, unlike its sibling actions/upload-artifact@v6 which is node24 -- the two repos diverged at v6. Verified against each tag's action.yml. Targets v7 (node24) rather than v8, which turns artifact digest-mismatch into a hard error. 3 occurrence(s). Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_012WxMrEo6Nk4RCQZjA4LkFC --- .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 c8b88d9..11fd5b7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -384,19 +384,19 @@ jobs: version: ${{ needs.check-version-tag.outputs.version }} steps: - name: Download release notes artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: release-notes path: ./release-notes - name: Download Unity installer artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: unity-installer-package path: ./assets - name: Download signed UPM package artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: signed-upm-package path: ./assets