Change checkout ref from 'stable' to 'dev'#27
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the CI workflow’s external dependency checkout to follow the dev branch of gismo/gismo, changing which upstream code is used during CI runs.
Changes:
- Change
actions/checkoutofgismo/gismofromref: stabletoref: dev.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| with: | ||
| repository: gismo/gismo | ||
| ref: stable | ||
| ref: dev |
There was a problem hiding this comment.
Switching the dependency checkout from ref: stable to ref: dev makes CI depend on a potentially more volatile upstream branch. If the goal isn’t explicitly to test against gismo/gismo’s latest dev, consider pinning to a tag or commit SHA (or documenting why dev is required) to keep CI runs reproducible.
| ref: dev | |
| ref: stable |
| @@ -26,7 +26,7 @@ jobs: | |||
| - uses: actions/checkout@master | |||
There was a problem hiding this comment.
actions/checkout@master tracks the action’s default branch, which can change unexpectedly and is discouraged for security/reproducibility. Pin this to a stable release (e.g., actions/checkout@v4) or a specific commit SHA instead of @master.
No description provided.