ci: bump actions/checkout to v6 for Node 24 runtime#47
Merged
Conversation
GitHub forces Node.js 20 actions onto Node 24 from June 16th 2026 and removes Node 20 from runners in September 2026. checkout v6 runs node24 natively; the v6 credential-persistence change is irrelevant here since no workflow pushes via git after checkout. Swatinem/rust-cache@v2 already resolves to node24 releases on its floating major tag and dtolnay/rust-toolchain is a composite action.
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the CI workflow to use actions/checkout@v6 so the workflow runs on a Node.js 24–compatible checkout action ahead of GitHub-hosted runner Node runtime changes.
Changes:
- Bump
actions/checkoutfromv4tov6in thebuild-and-testjob. - Bump
actions/checkoutfromv4tov6in theloom-testsjob. - Bump
actions/checkoutfromv4tov6in thereleasejob.
💡 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.
GitHub forces Node.js 20 actions to run on Node 24 starting June 16th, 2026 and removes Node 20 from runners in September 2026.
ci.ymlpinsactions/checkout@v4(node20) in 3 places; v6 runs node24 natively. The v6 credential-persistence change doesn't affect this repo — no workflow doesgit pushafter checkout.Left as-is:
Swatinem/rust-cache@v2(floating major already resolves to node24 releases) anddtolnay/rust-toolchain(composite action, no Node runtime).Same change as thepartly/reflectapi#172.