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@v6
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 may be silently ignored in v6

Medium Severity

The file parameter was deprecated in codecov-action v5 in favor of files (plural). The v6 action.yml only defines files as an input, not file. GitHub Actions silently ignores unrecognized with: parameters, so file: ./coverage.xml will likely be silently dropped after this upgrade, causing coverage reports to not be uploaded as intended. The parameter needs to be files instead of file.

Fix in Cursor Fix in Web

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