From be76c2355fbefd924890baad50b6e873a4e435f2 Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Sun, 28 Sep 2025 08:29:51 -0500 Subject: [PATCH] fix: update GitHub Pages actions to v4 for better deployment reliability - Update actions/upload-pages-artifact from v3 to v4 - Update actions/deploy-pages from v3 to v4 - This should resolve the deployment metadata lookup issue --- .github/workflows/deploy-storybook.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-storybook.yml b/.github/workflows/deploy-storybook.yml index 79dab0dd..466d0b52 100644 --- a/.github/workflows/deploy-storybook.yml +++ b/.github/workflows/deploy-storybook.yml @@ -190,11 +190,11 @@ jobs: - name: Upload artifact if: github.ref == 'refs/heads/main' - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v4 with: path: ./pages - name: Deploy to GitHub Pages if: github.ref == 'refs/heads/main' id: deployment - uses: actions/deploy-pages@v3 \ No newline at end of file + uses: actions/deploy-pages@v4 \ No newline at end of file