Pin GitHub Actions to immutable commit SHAs - #1141
Open
charpeni wants to merge 2 commits into
Open
Conversation
charpeni
force-pushed
the
pin-github-actions-shas
branch
from
August 7, 2026 15:43
a5f0652 to
12c1f6e
Compare
ymichael
added a commit
that referenced
this pull request
Aug 7, 2026
## Summary - render GitHub Flavored Markdown tables as structured, overflow-safe tables in GitHub issue and pull request bodies - support alignment markers, optional outer pipes, escaped pipes, and existing inline formatting inside cells - add focused frontend regression coverage based on the table from #1141 ## Testing - `pnpm exec turbo run test typecheck build --filter=bb-plugin-github --force` - `pnpm exec prettier --check plugins/github/components/markdown-lite.tsx plugins/github/components/markdown-lite.test.tsx plugins/github/vitest.config.ts plugins/github/package.json` - `pnpm install --lockfile-only --frozen-lockfile` - `git diff --check` Fixes #1142
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
Pins all third-party GitHub Actions across
.github/workflows/and thesetup-workspacecomposite action to immutable commit SHAs (with version comments) using pinact, reducing supply-chain risk from tag-retargeting attacks.Why
Action version tags (
@v4) are mutable — a compromised maintainer or token could retarget a tag to malicious code that runs in CI with our secrets. Pinning to a SHA makes the executed code immutable while the trailing# vX.Y.Zcomment preserves readability and dependency-update tooling support.Changes
actions/checkout11d5960a…actions/setup-node49933ea5…actions/upload-artifactea165f8d…actions/cache0057852b…pnpm/action-setupb906affc…6 workflow files plus
.github/actions/setup-workspace/action.ymlare updated.Verification
pinact runapplied cleanly to all files with no errors.uses:lines changed; no logic or step ordering altered.Notes
pinact run .github/workflows/*.yml .github/actions/setup-workspace/action.yml, or via Dependabot which understands SHA-pinned actions.