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 @@ -88,7 +88,7 @@ jobs:
make test
uv run coverage xml
- name: Upload coverage
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.

Deprecated file parameter silently ignored in codecov v7

Medium Severity

The file input was deprecated in codecov-action v5 and removed from the action.yml in v7. Since the workflow still uses file: ./coverage.xml instead of files: ./coverage.xml, the coverage file path is silently ignored after this version bump. Combined with fail_ci_if_error: false, coverage uploads will quietly stop working without any CI failure signal.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit a6ee3aa. Configure here.

with:
file: ./coverage.xml
flags: unit
Expand Down
Loading