From 11028365a221faa01e0a0f633682f6418eda62e3 Mon Sep 17 00:00:00 2001 From: Dashsoap <42135402+Dashsoap@users.noreply.github.com> Date: Sun, 14 Jun 2026 19:36:24 +0800 Subject: [PATCH] ci: standardize actions/checkout to v6 in deploy-site workflow release.yml already uses actions/checkout@v6 (and setup-node@v6), but deploy-site.yml still pins actions/checkout@v4. Align the two workflows on checkout@v6 so the repo isn't running two different major versions of the same action. Scope: only actions/checkout is bumped. deploy-pages@v4 and withastro/action@v3 are independent action version lines and are left untouched. --- .github/workflows/deploy-site.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-site.yml b/.github/workflows/deploy-site.yml index b66dde951..3a1c8dcc8 100644 --- a/.github/workflows/deploy-site.yml +++ b/.github/workflows/deploy-site.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Build with Astro uses: withastro/action@v3 with: