feat: update action runtime from node20 to node24#62
Open
austin-engle wants to merge 2 commits intoFranzDiebold:primaryfrom
Open
feat: update action runtime from node20 to node24#62austin-engle wants to merge 2 commits intoFranzDiebold:primaryfrom
austin-engle wants to merge 2 commits intoFranzDiebold:primaryfrom
Conversation
GitHub Actions runner v2.327.0+ supports node24 and node20 is entering its deprecation phase. This updates the action runtime, .nvmrc, and CI workflow to target Node.js 24. No code changes required — all existing tests pass on Node 24.
Author
|
@FranzDiebold would you be able to merge this soon? thank you |
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
node20tonode24inaction.yml.nvmrcfromv20tov24node-version: 24GitHub Actions runner v2.327.0+ supports the
node24runtime, andnode20is entering its deprecation phase (runner #4303). This change gets ahead of the deprecation warnings users will start seeing.Changes
Only configuration files — no code changes:
action.ymlusing: 'node20'→using: 'node24'.nvmrcv20→v24.github/workflows/ci.ymlnode-version: 20→node-version: 24Validation
dist/index.jsrebuilt withncc build— no output changes (bundle is identical)@actions/core,@actions/github,jest,nccall work on Node 24)Test plan