From a02aa26ebbf285d3b062194804ead3fd23877cba Mon Sep 17 00:00:00 2001 From: Kohei Wada Date: Tue, 28 Jul 2026 07:32:29 +0900 Subject: [PATCH] chore(ci): bump GitHub Pages actions to v5 Combines dependabot's #1183 and #1184 into a single change. `actions/upload-pages-artifact@v5` bumps its internal upload-artifact to v7, so the producer and consumer must move together. Merging them separately would run one real Pages deployment with a v5 upload feeding a v4 deploy, since docs.yml is itself in the workflow's trigger paths. --- .github/workflows/docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 3f0e9e26..c7b3ab7a 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -37,7 +37,7 @@ jobs: - name: Upload Pages artifact if: github.ref == 'refs/heads/main' && github.event_name == 'push' - uses: actions/upload-pages-artifact@v4 + uses: actions/upload-pages-artifact@v5 with: path: site/ @@ -58,4 +58,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5