Migrate to the Node 24 Actions runtime#32
Open
whhjdi wants to merge 3 commits into
Open
Conversation
added 3 commits
June 4, 2026 18:45
GitHub announced deprecation of the Node 20 runtime on Actions runners. Bump runs.using to node24, analogous to the Node 16 -> 20 bump in PR craig-day#24.
v5+ targets the Node 24 runtime, aligning with the action.yml node24 bump.
v3 moves the action runtime to Node 24, aligning with this PR.
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.
GitHub announced the deprecation of the Node.js 20 runtime on Actions runners. Workflows using this action now emit:
This PR migrates the action and its CI to the Node 24 runtime:
action.yml:runs.usingnode20→node24(analogous to the Node 16 → 20 bump in bump node version from 16 to 20, bump checkout action to v4 to resolve node deprecation warnings #24).actions/checkout:v4→v6(v5+ targets the Node 24 runtime).softprops/action-gh-release:v1→v3(v3 moves its runtime to Node 24).The action only depends on
@actions/*,@octokit/*, andsemver, all of which run on Node 24.Validation
node --test test.js→ 17/17.Example Runsmatrix (100 jobs: continuous/semantic × major/minor/patch/prerelease × tag prefixes × branches) passes on a Node 24 runner. Run: https://github.com/whhjdi/compute-tag/actions/runs/26947174991Thanks for maintaining this action!