chore(ci): bump release to Node 20 and actions to v5#41
Merged
Conversation
The release job ran on Node 18.x (EOL since 2025-04), which the pinned npm@11.6.2 override does not support, flooding the release log with `npm warn EBADENGINE`. Bump the release job to Node 20.x to match. Also bump actions/checkout and actions/setup-node from v4 to v5 across release.yml and ci.yml to clear the "Node.js 20 is deprecated" runner warning. The CI test matrix (16/18/20) and audit environment are left unchanged since they validate consumer Node compatibility. Co-Authored-By: Claude Opus 4.8 <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 release run log was noisy with warnings (release succeeded, none were blocking):
npm warn EBADENGINE(many) — the release job ran on Node 18.x (EOL since 2025-04), but theoverrides-pinnednpm@11.6.2and its@npmcli/*/@isaacs/*sub-deps require Node^20.17 || >=22.9.Node.js 20 is deprecated ... forced to run on Node.js 24—actions/checkout@v4andactions/setup-node@v4target the Node 20 action runtime, which GitHub is deprecating.Changes
18.x→20.x(resolves 🧪 Improve test coverage and fix critical bugs #1; matches the pinned npm), andactions/checkout/actions/setup-node@v4→@v5(resolves docs: improve CLI help messages with usage examples #2).actions/checkout/actions/setup-node@v4→@v5to clear the same runner deprecation repo-wide.Out of scope (intentionally unchanged)
16.x / 18.x / 20.x) and the audit/commitlint Node version — these validate consumer Node compatibility (engines: >=14), so they stay.codecov/codecov-action@v3— separate deprecation, left for its own change.marked()deprecation in the release log comes from inside@semantic-release's GitHub plugin and is not actionable here.🤖 Generated with Claude Code