chore: run Action on Node 24 per GitHub Node 20 deprecation#99
Open
kikils wants to merge 1 commit intogithub:mainfrom
Open
chore: run Action on Node 24 per GitHub Node 20 deprecation#99kikils wants to merge 1 commit intogithub:mainfrom
kikils wants to merge 1 commit intogithub:mainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
Updates this JavaScript GitHub Action and repo tooling to align with GitHub Actions runner guidance around the Node 20 deprecation by moving execution and development workflows to Node 24.
Changes:
- Switch the action runtime from
node20tonode24inaction.yml. - Bump the repository’s pinned Node version to
24.14.1via.node-version(used by CI). - Refresh
package-lock.jsonto the dependency graph produced under the updated Node/npm toolchain (transitive updates across build/test tooling).
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
action.yml |
Runs the action on the Node 24 runtime. |
.node-version |
Pins CI/local dev Node version to 24.14.1 via setup-node’s node-version-file. |
package-lock.json |
Updates resolved dependency versions to match the Node 24 install resolution. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
GitHub is deprecating Node 20 on Actions runners and recommends updating actions to Node 24.
See: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
What
runs.usingtonode24inaction.yml..node-versionto match.package-lock.jsonwithnpm installunder Node 24.Testing
npm run allDetails
npm run testDetails