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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:

- name: Upload coverage to Codecov
if: ${{ !cancelled() && steps.install.outcome == 'success' }}
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Using a mutable major-version tag (@v7) means the action's content can silently change between runs if the upstream repo pushes a new commit to that tag. Pinning to the exact commit SHA used at release time eliminates that risk. The SHA for v7.0.0 is fb8b3582c8e4def4969c97caa2f19720cb33a72f.

Suggested change
uses: codecov/codecov-action@v7
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

Fix in Codex

with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: coverage
Expand Down
Loading