Skip to content

Commit b63568a

Browse files
fix: update Codecov action file input
Change the input parameter `file` to `files` in the Codecov action step. Codecov's action now expects the parameter to be named `files` instead of `file`. This change ensures that coverage reports are uploaded correctly, preventing potential errors or misconfigurations in the CI workflow.
1 parent 9f6a4c4 commit b63568a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
if: matrix.python-version == '3.11'
3939
uses: codecov/codecov-action@v5
4040
with:
41-
file: ./coverage.xml
41+
files: ./coverage.xml
4242
fail_ci_if_error: false
4343

4444
validate:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Fixed
1111
- Updated CI workflow tag patterns to restrict triggers to version tags matching `vX.X.X` or `vX.X.X-<short-commit-hash>`
12+
- Fixed Codecov action input to use 'files' instead of 'file'
1213
- Fixed workflow permissions to resolve code scanning alerts
1314

1415
## [1.2.0] - 2025-09-22

0 commit comments

Comments
 (0)