ci: bump actions/checkout to v7 to clear Node 20 deprecation - #271
Merged
Conversation
GitHub is forcing actions that target Node 20 onto Node 24, and warns on every job that uses one. actions/checkout was the only such action here, appearing in all three workflows -- v4 in smoke-test.yml and update-major-version-tag.yml, v3 in test.yml. The smoke test runs a four-platform matrix, so it alone emitted four of these warnings per run. v7 matches what coverage-reporter's workflows already use. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
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 now forces actions targeting Node 20 onto Node 24 and emits a deprecation
warning on every job that uses one
(changelog).
actions/checkoutwas the only such action in this repo, and it was behind in allthree workflows:
smoke-test.yml@v4@v7test.yml@v3@v7update-major-version-tag.yml@v4@v7Because the smoke test runs a four-platform matrix, it alone emitted four of these
warnings on every run — most of the annotation noise on
run 32308989350.
v7matches whatcoverage-reporter's workflows already use, so the two repos stayin step.
Not addressed here
The remaining two warnings on that run (
The following taps are not trusted: aws/tap,macOS legs only) come from GitHub's hosted macOS runner image, which ships with
aws/tappre-tapped while recent Homebrew requires explicit tap trust. Nothing inthis repo triggers it and the only workaround is
HOMEBREW_NO_REQUIRE_TAP_TRUST=1,which Homebrew discourages. Left alone for GitHub to clear in a runner-image update.
Verification
CI-only change; no action code touched.
test.ymlexercises the action itself andruns on this PR. The smoke test can be re-run manually after merge to confirm the
four Node 20 annotations are gone.
🤖 Generated with Claude Code