fix: pin all GitHub Actions to commit SHAs - #3186
Merged
gtrivedi88 merged 1 commit intoSep 2, 2026
Merged
Conversation
Mitigate supply chain attacks (CVE-2025-30066) by pinning every action reference to an immutable commit SHA instead of mutable version tags or branch names. Ref: https://gitlab.eclipse.org/security/vulnerability-reports/-/work_items/273 Co-authored-by: Cursor <cursoragent@cursor.com>
gtrivedi88
requested review from
a team,
deerskindoll and
mkuznyetsov
as code owners
September 2, 2026 08:09
|
🎊 Navigate the preview: https://6a97db4d5e5071aaed45880d--eclipse-che-docs-pr.netlify.app 🎊 |
1 task
ibuziuk
approved these changes
Sep 2, 2026
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 every GitHub Actions reference to an immutable commit SHA to mitigate supply chain attacks like the tj-actions/changed-files compromise (CVE-2025-30066).
Before: All action references used mutable version tags (
@v3,@v4) or branch names (@main,@master,@reviewdog), which can be retroactively modified by attackers.After: Every
uses:line references a specific commit SHA with a version comment for readability:Changes across 9 workflow files (26 action references):
actions/checkout@v3# v4actions/cache@v3# v4actions/upload-artifact@v4# v4actions/setup-python@v4# v5docker/setup-qemu-action@v2# v3docker/setup-buildx-action@v2# v3docker/login-action@v2# v3marocchino/sticky-pull-request-comment@v2# v2dawidd6/action-download-artifact@v2# v9netlify/actions/cli@master# mastererrata-ai/vale-action@reviewdog# reviewdogredhat-actions/try-in-web-ide@main# mainExisting Dependabot configuration will manage future SHA updates automatically.
Ref: https://gitlab.eclipse.org/security/vulnerability-reports/-/work_items/273
Test plan
Made with Cursor