From 4270e30c40e24caf3ed917bd3bd1b6677e14e0d9 Mon Sep 17 00:00:00 2001 From: jnasbyupgrade Date: Sat, 18 Jul 2026 16:05:05 -0500 Subject: [PATCH] ci: bump actions/checkout to v6 in Claude workflows actions/checkout@v4 targets Node.js 20, which GitHub Actions runners are deprecating; runs currently show a "Node.js 20 is deprecated" warning naming actions/checkout@v4 as the offending action. Bump to @v6 (Node 24) in claude-code-review.yml and claude.yml to match ci.yml, which already uses @v6. --- .github/workflows/claude-code-review.yml | 2 +- .github/workflows/claude.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml index fc7e26c..9878f0b 100644 --- a/.github/workflows/claude-code-review.yml +++ b/.github/workflows/claude-code-review.yml @@ -78,7 +78,7 @@ jobs: if: steps.gate.outputs.decision == 'run' # Intentionally tracks the major-version tag (not a pinned SHA) so # upstream fixes are picked up automatically. - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index c85ec00..9c9cdb6 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -31,7 +31,7 @@ jobs: - name: Checkout repository # Intentionally tracks the major-version tag (not a pinned SHA) so # upstream fixes are picked up automatically. - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 1 persist-credentials: false