Fix codecov-action input: file -> files [MOD-15112]#953
Merged
Conversation
Renaming codecov/codecov-action's 'file' input to 'files'. The 'file' input was removed in v5.0.0 (renamed to 'files') and v6 did not reintroduce it. Combined with 'disable_search: true', the old 'file:' key was silently ignored and no coverage report was uploaded.
This was referenced May 5, 2026
🛡️ Jit Security Scan Results✅ No security findings were detected in this PR
Security scan by Jit
|
BenGoldberger
approved these changes
May 5, 2026
GuyAv46
approved these changes
May 5, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #953 +/- ##
==========================================
- Coverage 96.92% 96.92% -0.01%
==========================================
Files 130 130
Lines 7749 7739 -10
==========================================
- Hits 7511 7501 -10
Misses 238 238 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This was referenced May 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Describe the changes in the pull request
Follow-up to #947. Renames the
fileinput ofcodecov/codecov-actiontofiles.codecov/codecov-actionremoved thefileinput in v5.0.0 (renamed tofiles); v6 (the version we just bumped to) did not reintroduce it - see v6/action.yml. GitHub Actions silently drops unknownwith:keys, so the previousfile: ./bin/Linux-x86_64-debug/cov.infowas being ignored. Combined withdisable_search: true, the action would run successfully and upload no coverage report.Which issues this PR fixes
Main objects this PR modified
.github/workflows/coverage.ymlMark if applicable
Pull Request opened by Augment Code with guidance from the PR author
Note
Low Risk
Low risk workflow-only change that corrects a misnamed Codecov action input so coverage reports are actually uploaded.
Overview
Fixes the Codecov upload step in
.github/workflows/coverage.ymlby renaming thecodecov/codecov-action@v6input fromfiletofiles, ensuringcov.infois actually discovered and uploaded (instead of being silently ignored).Reviewed by Cursor Bugbot for commit 63cb890. Bugbot is set up for automated code reviews on this repo. Configure here.