Bump actions/checkout v4 -> v5#10
Merged
Merged
Conversation
actions/checkout@v4 runs on Node.js 20, which GitHub deprecated: - 2026-06-02: runners default to Node.js 24 (v4 will continue to work with a forced fallback flag for a transition period) - 2026-09-16: Node.js 20 removed from runners entirely actions/checkout@v5 ships on Node.js 24 and is otherwise a drop-in replacement (no inputs changed). Applied across CI, release, and test-signing workflows. softprops/action-gh-release@v2 in release.yml is unaffected and remains pinned at v2. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates GitHub Actions workflows to use actions/checkout@v5 (Node.js 24) to eliminate Node.js 20 deprecation warnings and align with upcoming runner defaults.
Changes:
- Bump
actions/checkoutfromv4tov5in CI workflow. - Bump
actions/checkoutfromv4tov5in Release workflow (both jobs). - Bump
actions/checkoutfromv4tov5in Test Signing workflow.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/ci.yml | Updates checkout action to v5 in CI validation job. |
| .github/workflows/release.yml | Updates checkout action to v5 in both validate and sign-and-release jobs. |
| .github/workflows/test-signing.yml | Updates checkout action to v5 in the signing test workflow. |
💡 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.
Summary
Bumps
actions/checkoutfromv4tov5across the three workflow files (CI, Release, Test Signing). v4 runs on Node.js 20, which GitHub is retiring on 2026-09-16; v5 ships on Node.js 24.Why now
Recent CI runs surface this warning on every job:
Fixing it now removes noise from the logs and avoids a forced cutover later.
Scope
actions/checkout@v4->actions/checkout@v5(4 occurrences across 3 files)softprops/action-gh-release@v2left untouched (current major; not deprecated)Test plan
Co-Authored-By: Claude Opus 4.7 (1M context) noreply@anthropic.com