ci: bump workflow actions to Node 24-compatible majors#1
Merged
Conversation
GitHub flagged the workflow actions as running on the deprecated Node 20 runtime (forced to Node 24 after 2026-06-16, removed 2026-09-16). Bump each to its latest stable major: - actions/checkout v4 -> v6 - pnpm/action-setup v3 -> v6 (version: 9 still passed explicitly) - actions/setup-node v4 -> v6 (node-version: 20 runtime unchanged) - softprops/action-gh-release v2 -> v3 Our usage relies only on stable inputs, so no other changes are needed. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Why
The
v3.0.0-alpha.3release run surfaced GitHub's deprecation notice: the workflow actions run on Node 20, which will be forced to Node 24 after 2026-06-16 and removed from runners 2026-09-16.What
Bump each action to its latest stable major (all run on Node 24):
actions/checkoutpnpm/action-setupactions/setup-nodesoftprops/action-gh-releaseApplied to both
ci.ymlandrelease.yml.Safety
pnpm/action-setupstill receives an explicitversion: 9, so the v4+ "infer version from packageManager" behaviour change doesn't apply.actions/setup-nodekeepsnode-version: 20(the build/test runtime) andcache: pnpm; pnpm is still installed before setup-node so the cache works.softprops/action-gh-releasev3 keeps the samename/body/prereleaseinputs.CI on this PR exercises the
ci.ymlchanges directly. Therelease.ymlchanges are validated by the next tagged release (or a manualworkflow_dispatchdry-run).🤖 Generated with Claude Code