ci: upgrade actions/checkout and setup-node to v6, node to 24#934
Merged
ci: upgrade actions/checkout and setup-node to v6, node to 24#934
Conversation
Upgrade GitHub Actions dependencies across all workflow files: - actions/checkout v4 → v6 (16 occurrences across 6 workflows) - actions/setup-node v4 → v6 (2 occurrences in ci.yml) - node-version 22 → 24 (2 occurrences in ci.yml) Breaking change analysis confirmed this is safe: - checkout v6: only changes are Node 24 runtime and credential isolation (stored in $RUNNER_TEMP instead of .git/config). No input/output API changes. Drop-in on GitHub-hosted runners. - setup-node v6: removes deprecated always-auth input (not used) and narrows auto-caching to npm-only. We don't use always-auth or packageManager field in package.json, so no impact. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
CI Security Review
Critical / High
None.
Medium
None. All upgraded actions (actions/checkout, actions/setup-node) are GitHub-owned first-party actions, which are acceptable with tag-only pins per our policy. No third-party actions were changed.
Low
None.
Verdict
PASS — This PR is security-neutral. It only bumps GitHub-owned action tags (v4 → v6) and the Node.js version (22 → 24). No new triggers, permissions, secrets, expressions, or LLM prompt changes are introduced. No attack surface is added or modified.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
actions/checkoutfrom v4 to v6 across all 6 workflow files (16 occurrences)actions/setup-nodefrom v4 to v6 inci.yml(2 occurrences)node-versionfrom 22 to 24 inci.yml(2 occurrences: skill-review, skill-trigger-eval jobs)Breaking Change Analysis
actions/checkout v4 → v6
$RUNNER_TEMPinstead of.git/config.git/configdirectlyactions/setup-node v4 → v6
always-authinput removedpackageManagerfield inpackage.jsondevEngines.runtimeprecedence overengines.nodenode-version, notnode-version-fileNode 22 → 24
Node 24 is the current LTS. Used only for
npm install -g @anthropic-ai/claude-codeand skill review scripts — no compatibility concerns.Why this is correct
Both upgrades were verified to be safe for our specific usage patterns:
always-auth,packageManagerinpackage.json, custom mirrors, or.git/configparsingsetup-nodeusage is minimal — just installing a Node version for npm CLI usageTest plan
🤖 Generated with Claude Code