root - chore: upgrade GitHub Actions (breaking)#136
Merged
Conversation
Upgrade all GitHub Actions references to their latest major versions: - actions/checkout v3/v4 -> v6 - actions/setup-node v4 -> v6 - codecov/codecov-action v5 -> v7 - github/codeql-action init/autobuild/analyze v2 -> v4 pnpm/action-setup is already at the latest (v6.0.8, SHA-pinned). The checkout/setup-node/codecov majors move their runtime to Node 24 (supported on ubuntu-latest); codeql v2 is deprecated and v4 is the current supported line. No workflow inputs changed. https://claude.ai/code/session_01Px42UMbWbPmi3d5YeKHwKa
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #136 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 8 8
Lines 492 492
Branches 105 101 -4
=========================================
Hits 492 492 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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
Upgrade all GitHub Actions references to their latest major versions.
Versions
actions/checkoutv3/v4 → v6actions/setup-nodev4 → v6codecov/codecov-actionv5 → v7github/codeql-action(init/autobuild/analyze) v2 → v4pnpm/action-setupv6.0.8 — already latest, unchanged (SHA-pinned)Tests
pnpm buildpassespnpm testpasses (231 passed, 1 skipped, 100% coverage)Breaking notes
Major-version bumps (hence the
(breaking)suffix). No workflow inputs changed and no project code changes are required:ubuntu-latestrunners provide. setup-node v6 limits automatic caching to npm; this repo setscache: 'pnpm'explicitly (withpnpm/action-setuprunning first), so caching is unaffected.init/autobuild/analyzesub-actions and theirlanguages/categoryinputs are unchanged.token,slug, andfilesare confirmed present in the v7action.yml.Generated by Claude Code