build(deps): bump codecov/codecov-action from 5 to 6#589
build(deps): bump codecov/codecov-action from 5 to 6#589dependabot[bot] wants to merge 1 commit intomasterfrom
Conversation
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 5 to 6. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v5...v6) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
|
Hi @dependabot[bot]. Thanks for your PR. I'm waiting for a codeready-toolchain member to verify that this patch is reasonable to test. If it is, they should reply with Regular contributors should join the org to skip this step. Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
WalkthroughUpdated the Codecov GitHub Action version in the upload-coverage workflow from v5 to v6 without modifying any workflow steps, conditions, or control flow logic. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes 🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In @.github/workflows/upload-coverage.yml:
- Line 22: The workflow currently references a non-existent action version
"codecov/codecov-action@v6"; update the uses entry in the GitHub Actions
workflow (the line containing uses: codecov/codecov-action@v6) to a valid v5
release (e.g., uses: codecov/codecov-action@v5 or pin to uses:
codecov/codecov-action@v5.5.3) to restore a real, supported version.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: a668ce11-f536-4d18-ad88-8aeb59afbea2
📒 Files selected for processing (1)
.github/workflows/upload-coverage.yml
|
|
||
| - name: Upload to Codecov | ||
| uses: codecov/codecov-action@v5 | ||
| uses: codecov/codecov-action@v6 |
There was a problem hiding this comment.
🧩 Analysis chain
🌐 Web query:
codecov-action v6 migration guide breaking changes from v5
💡 Result:
No v6 version of codecov-action exists as of 2026-03-26. The latest release is v5.5.3 (March 2026). The most recent major version is v5.0.0, which introduced breaking changes from v4, but there are no v6 migration guides or breaking changes because v6 has not been released. For reference, v5 breaking changes from v4 (detailed in official CHANGELOG and README): - Uses Codecov Wrapper (encapsulates CLI for faster updates). - Deprecated file → use files; plugin → use plugins. - New inputs: binary, gcov_args, gcov_executable, gcov_ignore, gcov_include, report_type, skip_validation, swift_project. - Tokenless uploads for public repos (opt-out in Codecov settings); forks/PRs supported automatically. - Dependabot needs CODECOV_TOKEN secret access. Continue using @v5 (e.g., uses: codecov/codecov-action@v5) for the latest stable features. Check https://github.com/codecov/codecov-action/releases for updates.
Citations:
- 1: https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md
- 2: https://github.com/codecov/codecov-action
- 3: https://github.com/marketplace/actions/codecov
- 4: https://github.com/codecov/codecov-action/releases
- 5: https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md
- 6: https://www.securitylab.github.com
🏁 Script executed:
#!/bin/bash
# Description: Find all uses of codecov/codecov-action to ensure consistent updates
# Search for codecov-action usage across all workflow files
rg -n 'codecov/codecov-action' --glob '.github/workflows/*.yml' --glob '.github/workflows/*.yaml'Repository: codeready-toolchain/registration-service
Length of output: 232
🏁 Script executed:
#!/bin/bash
# Verify the file exists and check its content
ls -la .github/workflows/upload-coverage.yml 2>/dev/null && echo "=== File found ===" || echo "File not found"
# List all files in .github/workflows to understand structure
echo "=== Workflow files available ==="
find .github/workflows -type f 2>/dev/null | head -20
# Search for codecov-action without glob restrictions
echo "=== Searching for codecov-action usage ==="
rg 'codecov/codecov-action' --max-count 20Repository: codeready-toolchain/registration-service
Length of output: 581
🏁 Script executed:
#!/bin/bash
# Read the actual file to see what's on line 22
echo "=== Full content of upload-coverage.yml ==="
cat -n .github/workflows/upload-coverage.ymlRepository: codeready-toolchain/registration-service
Length of output: 1305
Revert codecov/codecov-action to v5—v6 does not exist.
The change to codecov/codecov-action@v6 references a non-existent version. As of March 2026, the latest release is v5.5.3. Version 6 has never been released. Update line 22 back to v5 (e.g., uses: codecov/codecov-action@v5 or pin to @v5.5.3 for stability).
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In @.github/workflows/upload-coverage.yml at line 22, The workflow currently
references a non-existent action version "codecov/codecov-action@v6"; update the
uses entry in the GitHub Actions workflow (the line containing uses:
codecov/codecov-action@v6) to a valid v5 release (e.g., uses:
codecov/codecov-action@v5 or pin to uses: codecov/codecov-action@v5.5.3) to
restore a real, supported version.
|
/ok-to-test |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: alexeykazakov, dependabot[bot] The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
@dependabot[bot]: The following test failed, say
Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |



Bumps codecov/codecov-action from 5 to 6.
Release notes
Sourced from codecov/codecov-action's releases.
... (truncated)
Changelog
Sourced from codecov/codecov-action's changelog.
... (truncated)
Commits
57e3a13Th/6.0.0 (#1928)f67d33dRevert "Revert "build(deps): bump actions/github-script from 7.0.1 to 8.0.0""...Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Summary by CodeRabbit