Summary
PR #43 attempted to bump codecov/codecov-action from v3 to v4 but is now stale with merge conflicts. The repository structure has changed significantly since then, but Downstream.yml still uses codecov-action v3.
Background
- codecov-action v4 requires a token (tokenless uploading is no longer supported)
- The shared workflow in
Tests.yml handles codecov internally
Documentation.yml now uses a shared workflow
Proposed Change
Update .github/workflows/Downstream.yml line 53-55 from:
- uses: codecov/codecov-action@v3
with:
file: lcov.info
to:
- uses: codecov/codecov-action@v4
with:
file: lcov.info
token: \${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
Prerequisites
Ensure CODECOV_TOKEN is configured in the repository secrets.
Related
cc @ChrisRackauckas
🤖 Generated with Claude Code
Summary
PR #43 attempted to bump codecov/codecov-action from v3 to v4 but is now stale with merge conflicts. The repository structure has changed significantly since then, but
Downstream.ymlstill uses codecov-action v3.Background
Tests.ymlhandles codecov internallyDocumentation.ymlnow uses a shared workflowProposed Change
Update
.github/workflows/Downstream.ymlline 53-55 from:to:
Prerequisites
Ensure
CODECOV_TOKENis configured in the repository secrets.Related
cc @ChrisRackauckas
🤖 Generated with Claude Code