mono - chore: upgrade GitHub Actions (breaking) - #2024
Merged
Conversation
Upgrade actions/setup-node from v6 to v7 across all 9 references. The other five actions are already at their latest major and are unchanged: actions/checkout@v7, pnpm/action-setup@v6, codecov/codecov-action@v7, oven-sh/setup-bun@v2 and cloudflare/wrangler-action@v4. Existing major-only pin style is preserved. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01EhFhwXMXeG5bRV8gV61WL3
Contributor
|
Note Gemini is unable to generate a review for this pull request due to the file types involved not being currently supported. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2024 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 55 55
Lines 5067 5067
Branches 819 821 +2
=========================================
Hits 5067 5067 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
This was referenced Aug 2, 2026
Merged
Open
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.
Please check if the PR fulfills these requirements
What kind of change does this PR introduce?
Chore — CI dependency upgrade. Fourth and final dev-phase PR. Follows #2021, #2022, #2023.
Summary
Upgrades
actions/setup-nodev6 → v7 across all 9 references. The other five actions in this repo are already at their latest major and are untouched.Changes
actions/setup-node@v6→@v7— 9 references across 7 workflow filesAlready current, verified against each action's tags and left unchanged:
actions/checkoutpnpm/action-setupcodecov/codecov-actionoven-sh/setup-buncloudflare/wrangler-actionExisting major-only pin style (
@vX) is preserved throughout — no switch to SHA or patch pins.Verification
js-yaml; job/step counts unchanged: 9setup-nodesteps before and after)git ls-remote --tagsagainst each action repositoryactions/setup-node@v7.0.0confirmed a stable release, not a pre-releaseBreaking notes
actions/setup-nodecrosses a major. The v7.0.0 notes are terse, but one change is worth your attention because PR CI cannot exercise it:I read
src/authutil.tsat thev7.0.0tag to pin down the actual behavior:.npmrc://registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}NODE_AUTH_TOKENwhen the user hadn't set one. v7 exports it only if already present in the environment.This matters for the
publishjob inrelease.yaml, which setsregistry-urlbut deliberately sets no token — the step is commented "Uses OIDC only — no token." Under v6 that job ran with a garbage token expanded into.npmrc; under v7 the placeholder expands to empty instead.My read is this is neutral-to-favorable for OIDC trusted publishing — npm treats an empty
_authTokenas no credential and proceeds to the OIDC exchange, whereas a bogus token is the kind of thing that earns a 401. But that path only runs on a realreleaseevent, so nothing in this PR's checks proves it. Flagging it explicitly so the first release after this merge gets a look rather than a surprise. If you'd rather de-risk it, thepublishjob'ssetup-nodecould stay on v6 independently.Generated by Claude Code