feat: migrate action runtime from node20 to node24#153
Merged
TerryHowe merged 5 commits intooras-project:mainfrom Apr 2, 2026
Merged
feat: migrate action runtime from node20 to node24#153TerryHowe merged 5 commits intooras-project:mainfrom
TerryHowe merged 5 commits intooras-project:mainfrom
Conversation
- Update action.yml: runs.using node20 -> node24 - Update check-dist.yml: build with Node.js 24.x (was 16.x) - Bump @actions/core 2.0.1 -> 2.0.3 (latest CJS-compatible) - Bump @actions/tool-cache 2.0.2 -> 3.0.1 (latest CJS-compatible) - Bump version 0.1.0 -> 0.2.0 - Rebuild dist/ with updated dependencies Node 20 reaches EOL in April 2026 and GitHub Actions will default to Node 24 starting June 2, 2026. Note: node24 requires runner v2.328.0+ and is incompatible with macOS 13.4 and lower. Signed-off-by: Chris van Sluijsveld <cvs79@msn.com>
Signed-off-by: Terry Howe <thowe@nvidia.com>
- Pin @types/node to ^24.0.0 to match node24 runtime (^25.5.0 targets Node 25) - Add "types": ["node"] to tsconfig.json (TypeScript 6 requires explicit type roots) - Fixes check-dist CI failure Signed-off-by: Dylan M. Taylor <dylan@dylanmtaylor.com>
577eec9 to
f0b0f88
Compare
Contributor
Author
|
@TerryHowe this should address that check-dist failure in the other open PR. I left all commit authorship. |
TerryHowe
requested changes
Apr 2, 2026
Co-authored-by: Terry Howe <terrylhowe@gmail.com> Signed-off-by: Dylan M. Taylor <dylan@dylanmtaylor.com>
Contributor
|
Thanks for merging. Didn't have any time this week to look at the feedback. |
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.
Migrates the action runtime from node20 to node24, based on the work by @cvs79 in #146 with additional fixes for the check-dist build failure.
Changes from #146:
Additional fixes:
Closes #145