From aeaeacf725f387ad21e0320cfe15c90b85348446 Mon Sep 17 00:00:00 2001 From: snomiao Date: Wed, 15 Oct 2025 21:14:35 +0000 Subject: [PATCH] fix: update deprecated GitHub Actions to latest versions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update actions/download-artifact@v3 to v4 - Update actions/upload-pages-artifact@v3 to v4 - Update dawidd6/action-download-artifact@v3 to v6 Resolves CI/CD failure with deprecated artifact actions. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/release-pages.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-pages.yml b/.github/workflows/release-pages.yml index 3fc445d70c..00f9d91269 100644 --- a/.github/workflows/release-pages.yml +++ b/.github/workflows/release-pages.yml @@ -50,7 +50,7 @@ jobs: - name: Download Storybook artifact (latest successful run on main) continue-on-error: true if: steps.fetch_storybook_trigger.outcome != 'success' - uses: dawidd6/action-download-artifact@v3 + uses: dawidd6/action-download-artifact@v6 with: github_token: ${{ secrets.GITHUB_TOKEN }} workflow: storybook-and-chromatic-ci.yaml @@ -73,7 +73,7 @@ jobs: - name: Download Vitest reports (latest successful run on main) continue-on-error: true if: steps.fetch_vitest_trigger.outcome != 'success' - uses: dawidd6/action-download-artifact@v3 + uses: dawidd6/action-download-artifact@v6 with: github_token: ${{ secrets.GITHUB_TOKEN }} workflow: vitest-tests.yaml @@ -89,7 +89,7 @@ jobs: uses: actions/configure-pages@v4 - name: Upload built pages as cache - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v4 with: name: built-pages path: '.pages' @@ -124,7 +124,7 @@ jobs: uses: actions/checkout@v5 - name: download built pages - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: built-pages path: ./.pages