-
Notifications
You must be signed in to change notification settings - Fork 1
Change checkout reference from 'stable' to 'dev' #28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -26,7 +26,7 @@ jobs: | |||||
| - uses: actions/checkout@master | ||||||
| with: | ||||||
| repository: gismo/gismo | ||||||
| ref: stable | ||||||
| ref: dev | ||||||
|
||||||
| ref: dev | |
| ref: 0123456789abcdef0123456789abcdef01234567 # pinned commit (was: dev) |
Copilot
AI
Mar 3, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This second checkout also uses actions/checkout@master. Consider pinning to actions/checkout@v4 (or a commit SHA) for reproducibility and to reduce the risk of CI breaking due to upstream changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
actions/checkout@masteris a moving ref; pin this to a major version tag (e.g.,actions/checkout@v4) or a specific commit SHA to avoid supply-chain risk and unexpected CI behavior whenmasterchanges.