From c5fea8d7d9fea97b6a3c99085ddb0c8025bd0159 Mon Sep 17 00:00:00 2001 From: tiennm99 Date: Sun, 3 May 2026 12:47:51 +0700 Subject: [PATCH] chore(deps): batch-bump GitHub Actions to latest majors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Consolidates dependabot PRs #1-#5 into one atomic change to avoid sequential rebase churn (all 5 dependabot PRs touched the same 2 workflow files). - actions/checkout: v4 → v6 - actions/configure-pages: v5 → v6 - actions/upload-artifact: v4 → v7 - actions/upload-pages-artifact: v3 → v5 - actions/deploy-pages: v4 → v5 Each individual bump's CI was green on dependabot's PR. Dependabot will auto-close PRs #1-#5 when this lands on main. --- .github/workflows/build.yml | 4 ++-- .github/workflows/deploy.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6eb5b8d..2ff1e06 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: submodules: recursive fetch-depth: 0 @@ -33,7 +33,7 @@ jobs: run: hugo --gc --minify --themesDir ../.. --printPathWarnings - name: Upload built site - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: exampleSite-public path: exampleSite/public diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6c88852..f7076c9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,13 +18,13 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: submodules: recursive fetch-depth: 0 - id: pages - uses: actions/configure-pages@v5 + uses: actions/configure-pages@v6 - name: Setup Hugo Extended uses: peaceiris/actions-hugo@v3 @@ -42,7 +42,7 @@ jobs: --baseURL "${{ steps.pages.outputs.base_url }}/" - name: Upload Pages artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v5 with: path: exampleSite/public @@ -54,4 +54,4 @@ jobs: runs-on: ubuntu-latest steps: - id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5