security: pin all GitHub Actions by commit SHA#400
Merged
0x46616c6b merged 2 commits intomainfrom Feb 24, 2026
Merged
Conversation
Pin all external action references to their full commit SHA for supply-chain security, preventing tag manipulation attacks. Each reference uses the format: uses: owner/action@<sha> # vX.Y.Z This format is natively supported by Dependabot, which will automatically update both the SHA and version comment on new releases. Changes: - 48 action references across 18 workflow files pinned by SHA - Major-only tags (v6, v4, v5, v8) resolved to their latest patch version - Internal reusable workflow refs (@main) left unchanged Co-Authored-By: OpenCode <noreply@opencode.ai>
yamllint requires min-spaces-before: 2 for inline comments. Adjust all SHA-pinned action references from '# vX.Y.Z' to ' # vX.Y.Z'. Co-Authored-By: OpenCode <noreply@opencode.ai>
flaxel
approved these changes
Feb 23, 2026
timdittler
approved these changes
Feb 23, 2026
Contributor
timdittler
left a comment
There was a problem hiding this comment.
Nice! Link to the docs for future reference https://docs.github.com/en/actions/reference/security/secure-use#keeping-the-actions-in-your-workflows-secure-and-up-to-date
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Type of Change
Description
Pin all external GitHub Action references to their full 40-character commit SHA to improve supply-chain security and prevent tag manipulation attacks.
Format used:
Why this matters:
# vX.Y.Z) preserves human-readable version infoWhat changed:
@v6,@v4,@v5,@v8) resolved to their latest concrete patch version@main) left unchanged as they reside in this repositoryDependabot compatibility:
Dependabot natively supports this format and will automatically update both the SHA and the version comment when new releases are available. The existing Dependabot configuration does not need any changes.
Checklist
The changes and the PR were generated by OpenCode.