Prepare the action runtime and development metadata for Node 24 - #252
Merged
Conversation
Co-authored-by: lcollins <528874+lcollins@users.noreply.github.com>
Co-authored-by: lcollins <528874+lcollins@users.noreply.github.com>
Co-authored-by: lcollins <528874+lcollins@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
lcollins
August 10, 2026 18:55
View session
lcollins
marked this pull request as ready for review
August 10, 2026 18:55
lcollins
approved these changes
Aug 10, 2026
There was a problem hiding this comment.
Pull request overview
Updates this repository’s GitHub Action runtime declaration and related development metadata to align with Node.js 24, ensuring the bundled JavaScript action runs under the newer Node major on hosted runners.
Changes:
- Switch
action.ymlruntime fromnode20tonode24. - Update local typechecking alignment by moving
@types/nodeto the Node 24 line inpackage.jsonandpackage-lock.json(including updated transitiveundici-types). - Refresh the README note to reflect Node 24 support.
Reviewed changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| README.md | Updates the repository note to indicate Node 24 support. |
| package.json | Bumps @types/node devDependency to the Node 24 major line. |
| package-lock.json | Locks updated @types/node (and transitive undici-types) versions and metadata. |
| action.yml | Declares runs.using: node24 for the action runtime. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
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.
This updates the action’s declared runtime from Node 20 to Node 24 and aligns the repository metadata with that runtime shift. The change is intentionally narrow: runtime declaration, supporting type definitions, and the related documentation note.
Runtime
action.ymlfromnode20tonode24so hosted workflows execute the bundled action on the new Node major.Development metadata
@types/nodeinpackage.jsonandpackage-lock.jsonto the Node 24 line to keep local typechecking aligned with the declared action runtime.Documentation