chore(ci): SHA-pin third-party GitHub Actions#525
Merged
Conversation
Collaborator
Author
|
/bonk review |
Contributor
Review: SHA-pin third-party GitHub ActionsI've verified the changes in all four workflow files. Here's my assessment: Changes Verified ✓
First-party actions correctly left as tags
AssessmentLGTM! This is a solid security improvement. All high/medium-risk third-party actions are now pinned to immutable 40-character commit SHAs, preventing supply chain attacks via tag rewriting. The change is minimal, focused, and follows security best practices. First-party GitHub-maintained actions appropriately remain tag-pinned as they're lower risk. The CI run on this PR will validate that the pinned SHAs resolve correctly. |
commit: |
Contributor
Docs PreviewCommit: |
geoquant
approved these changes
May 20, 2026
b3bf3e2 to
746e811
Compare
Pin high/medium-risk third-party actions to immutable commit SHAs to prevent supply chain attacks via mutable tag/branch references. Pinned: - ask-bonk/ask-bonk/github@main -> 8c7a831 (bonk, bigbonk, reviewer) - pnpm/action-setup@v4 -> f40ffcd (bonk, bigbonk) - changesets/action@v1 -> 63a615b (release) First-party actions/* left as tag-pinned (lower risk, maintained by GitHub).
746e811 to
8bb85b5
Compare
Contributor
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
Pin high/medium-risk third-party actions to immutable commit SHAs to prevent supply chain attacks via mutable tag/branch references.
Pinned actions
ask-bonk/ask-bonk/github@main8c7a831pnpm/action-setup@v4f40ffcdchangesets/action@v163a615bFirst-party
actions/*left as tag-pinned (lower risk, maintained by GitHub).Why
Mutable tags and branch refs can be rewritten by a compromised upstream maintainer (see tj-actions incident). SHA-pinning ensures we run exactly the code we audited.