ci: pin github actions hashes#38
Merged
Merged
Conversation
ale-exo
approved these changes
Apr 28, 2026
ale-exo
left a comment
There was a problem hiding this comment.
utACK
https://github.com/actions/checkout/releases/tag/v3.6.0https://github.com/actions/setup-node/releases/tag/v4.4.0https://github.com/github/codeql-action/releases/tag/v2.28.1
There was a problem hiding this comment.
Pull request overview
This PR reduces GitHub Actions supply-chain risk by replacing floating third-party action references (e.g., @v3, @v4) with pinned full commit SHAs, while leaving internal ExodusMovement/... actions intentionally unchanged (none present in these workflows).
Changes:
- Pin
actions/checkoutandactions/setup-nodeto full commit SHAs in release and checks workflows. - Pin
github/codeql-actionsteps (init,autobuild,analyze) to a full commit SHA in the CodeQL workflow.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/release.yml | Pins actions/checkout and actions/setup-node to immutable SHAs for the release job. |
| .github/workflows/codeql.yml | Pins actions/checkout and github/codeql-action/* to immutable SHAs for CodeQL scanning. |
| .github/workflows/checks.yml | Pins actions/checkout and actions/setup-node to immutable SHAs for CI checks. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
This PR pins third-party GitHub Actions to full commit SHAs.
Internal
ExodusMovement/...actions are out of scope for this campaign and are intentionally not locked in these changes.This removes floating action references and reduces supply-chain risk by ensuring workflow execution uses reviewed, immutable upstream revisions instead of tags that can be moved.