Bump GitHub Actions to Node 24 runtimes#41
Merged
Conversation
GitHub forces Node.js 20 actions onto Node 24 from June 16th, 2026; the v3.3.0 release run carried deprecation annotations for every job. checkout v6, setup-node v6, upload-artifact v7, download-artifact v8, softprops/action-gh-release v3 — all Node 24. Checked against the release-notes breaking changes: artifact downloads here are by pattern or all-artifacts (the download v5 path change is by-ID only), setup-node auto-caching is moot (cache: npm already explicit, no packageManager field), and runners are GitHub-hosted so the 2.327.1 runner floor is met. dtolnay/rust-toolchain is composite, no Node runtime. Note release-artifacts.yml only runs on v* tags, so its bumps are exercised at the next release rather than by this PR's CI. Co-Authored-By: Claude Fable 5 <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.
The v3.3.0 release run was annotated on every job: GitHub forces Node 20 action runtimes onto Node 24 starting June 16th, 2026, and removes Node 20 from runners on September 16th. Bumps all five Node-based actions to their current majors (all Node 24):
Breaking-change notes checked per action:
cache: "npm"and the rootpackage.jsonhas nopackageManagerfield.GITHUB_TOKEN).archiveparameter is opt-in; gh-release v3 is a pure runtime move.dtolnay/rust-toolchainis a composite action with no Node runtime.Caveat: this PR's CI only exercises
ci.yml;release-artifacts.ymlruns onv*tags, so its bumps get their first real run at the next release.Out of scope but noting: the workflows still run the project on Node 20 (
node-version: "20"), which reached end-of-life in April 2026 — bumping that involves the extension's esbuild target and is a separate decision.🤖 Generated with Claude Code