Skip to content
Open
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/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
if: "!contains(github.event.head_commit.message, 'chore: prepare release')" # Skip merges from releases
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/checkout@v5
Copy link

Copilot AI Apr 2, 2026

Choose a reason for hiding this comment

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

actions/checkout@v5 is a floating major tag; it can change without review and may break the workflow or introduce an unexpected supply-chain update. Consider pinning to a specific release (e.g., v5.x.y) or, ideally, a commit SHA (similar to the pinned knope-dev/action below), and if you want automated upgrades, add github-actions to .github/dependabot.yml so updates are controlled via PRs.

Suggested change
- uses: actions/checkout@v5
- uses: actions/checkout@v5.0.0

Copilot uses AI. Check for mistakes.
with:
fetch-depth: 0
- name: Configure Git
Expand Down
Loading