Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@master

Copilot AI Mar 3, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Copilot uses AI. Check for mistakes.
with:
repository: gismo/gismo
ref: stable
ref: dev

Copilot AI Mar 3, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Suggested change
ref: dev
ref: stable

Copilot uses AI. Check for mistakes.
path: ./gismo

- uses: actions/checkout@master
Expand Down