chore: run Action on Node 24 per GitHub Node 20 deprecation#99
chore: run Action on Node 24 per GitHub Node 20 deprecation#99kikils wants to merge 2 commits 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.
|
@GrantBirki |
|
Gently pinging @nobe4 for a review when you have a moment |
|
Thanks for this and for your patience! 👍 |
|
@kikils it seems that the actions got stuck, can you push an empty commit to start them again? |
|
@nobe4 |
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