From d7b2a531a7c2c50902f2d42f3dd66f75f1497036 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Thu, 28 Aug 2025 22:55:28 +0000 Subject: [PATCH] feat: Update configure-pages action to v5 Updates the `actions/configure-pages` GitHub Action from v4 to v5 in the `pages.yml` workflow. This aligns the workflow with the latest version recommended in the official documentation. This change was made in the context of debugging a "Get Pages site failed" error. The root cause of this error is a misconfiguration in the repository's GitHub Pages settings, which must be set to "GitHub Actions" as the deployment source. This code change is a best-practice update and does not, by itself, resolve the underlying configuration issue. --- .github/workflows/pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 3cba0e5..dc0e364 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -28,7 +28,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Setup Pages - uses: actions/configure-pages@v4 + uses: actions/configure-pages@v5 - name: Build with Jekyll uses: actions/jekyll-build-pages@v1 with: