ci: bump GitHub Action majors to Node 24-compatible versions#251
Merged
Conversation
The v3.3.0 release workflow surfaced a deprecation warning: Node.js 20 actions are deprecated. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Bumps every affected action to its current major (each major's release notes confirm the move is essentially a Node 20 → Node 24 bundle update with no input-shape changes that affect our usage): | Action | Was | Now | |---------------------------------|-----|-----| | actions/checkout | v4 | v6 | | actions/setup-java | v4 | v5 | | actions/setup-node | v4 | v6 | | actions/deploy-pages | v4 | v5 | | actions/upload-pages-artifact | v3 | v5 | | softprops/action-gh-release | v2 | v3 | DeLaGuardo/setup-clojure@13 stays unchanged — it's already on the current major. setup-node v6's only breaking change is limiting automatic caching to npm; we don't set the `cache:` input anywhere, so this doesn't affect our workflows. Co-Authored-By: Claude Opus 4.7 (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.
Summary
Addresses the deprecation warning surfaced on the v3.3.0 release run:
Bumps every affected action to its current major across all 8 workflow files:
actions/checkoutactions/setup-javaactions/setup-nodecache:input, so it doesn't affect usactions/deploy-pagesactions/upload-pages-artifactinclude-hidden-filesinput addedsoftprops/action-gh-releaseDeLaGuardo/setup-clojure@13stays unchanged — it's already on the current major and uses@13, not@v13.Risk
ci.yml,pages.yml) — exercised on every push. This PR will validate them in its own CI run.release.yml,release-{react,angular,vue,svelte,solid}.yml) — only fire on tag pushes; will be validated on the next release of each.If any release workflow regresses, the fix is to pin back to the previous major for that specific action (the v3.3.0 release used the v4/v3/v2 versions successfully two hours ago, so the previous-state diff is small).
Test plan
ci.ymlstill works under the bumped versions🤖 Generated with Claude Code