Skip to content

chore(deps): update codecov/codecov-action action to v7 - #36

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/codecov-codecov-action-7.x
Open

chore(deps): update codecov/codecov-action action to v7#36
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/codecov-codecov-action-7.x

Conversation

@renovate

@renovate renovate Bot commented Jun 7, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
codecov/codecov-action action major v6v7

Release Notes

codecov/codecov-action (codecov/codecov-action)

v7.0.0

Compare Source

⚠️ Due to migration issues with keybase, we are unable to update our keys under the codecovsecurity account. We have deleted the account and are using codecovsecops with the original gpg key

What's Changed

Full Changelog: codecov/codecov-action@v6.0.1...v7.0.0

v7

Compare Source


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@coderabbitai

coderabbitai Bot commented Jun 7, 2026

Copy link
Copy Markdown

Review Change Stack

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 6f53130d-4f81-4589-9f4f-71154b1dd545

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review
📝 Walkthrough

Walkthrough

The CI workflow is updated to use Codecov GitHub Actions v7 instead of v6, upgrading the coverage upload step to the latest action version.

Changes

Codecov action upgrade

Layer / File(s) Summary
Codecov action version bump
.github/workflows/ci.yml
The Codecov upload step in the CI workflow is updated from codecov/codecov-action@v6 to codecov/codecov-action@v7.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Poem

🐰 A hop and a bump, from six unto seven,
Codecov's now newer—our uploads to heaven!
One line changed swiftly, no tests to update,
Just action version, fresh and first-rate! 📊✨

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and specifically describes the main change: updating the codecov-action GitHub Action from v6 to v7, which matches the changeset exactly.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch renovate/codecov-codecov-action-7.x

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@codecov

codecov Bot commented Jun 7, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 86.11%. Comparing base (a72d251) to head (529b601).

Additional details and impacted files
@@           Coverage Diff           @@
##             main      #36   +/-   ##
=======================================
  Coverage   86.11%   86.11%           
=======================================
  Files           1        1           
  Lines         360      360           
=======================================
  Hits          310      310           
  Misses         30       30           
  Partials       20       20           

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In @.github/workflows/ci.yml:
- Line 48: Update the Codecov action ref used in the GitHub Actions workflow:
replace the invalid floating tag "codecov/codecov-action@v7" with the immutable
commit SHA for v6.0.0 by changing the uses value to
"codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2"; ensure the
change occurs in the workflow step that currently contains the uses entry so CI
uses the pinned, valid release.
🪄 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: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 6378ea90-d665-46b7-8315-bc585909a9a6

📥 Commits

Reviewing files that changed from the base of the PR and between b820641 and 7e5c867.

📒 Files selected for processing (1)
  • .github/workflows/ci.yml

Comment thread .github/workflows/ci.yml

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail
# Inspect the workflow around the referenced line
ls -la .github/workflows || true
nl -ba .github/workflows/ci.yml | sed -n '1,120p'

Repository: ALRubinger/aileron-connector-google

Length of output: 368


🏁 Script executed:

#!/bin/bash
set -euo pipefail

# Print lines 35-65 with line numbers using awk (since nl isn't available)
awk 'NR>=35 && NR<=65 {printf "%d:%s\n", NR, $0}' .github/workflows/ci.yml

Repository: ALRubinger/aileron-connector-google

Length of output: 941


🌐 Web query:

codecov/codecov-action v7 commit SHA

💡 Result:

As of June 7, 2026, there is no official v7 release of the codecov/codecov-action [1]. The most recent major release for this action is v6 (specifically, v6.0.1 is cited in recent documentation and release history) [2][3][4]. References to "v7" in some community configurations or discussions often stem from confusion with other GitHub actions (such as actions/github-script or actions/upload-artifact, which have reached v7) [5][6][7] or mistaken versioning expectations [1]. Because a v7 tag for codecov/codecov-action does not exist, there is no corresponding commit SHA for it. To ensure your GitHub Actions workflow remains stable and secure, it is recommended to use the latest established stable version (e.g., v6.0.1) or pin to a specific, verified commit SHA from the official repository's releases [2].

Citations:


🌐 Web query:

site:github.com codecov/codecov-action refs/tags v7

💡 Result:

There is no tag v7 in codecov/codecov-action as of the sources found: the action repository documents and exposes release tags up through v6 (e.g., refs/tags/v6 and v6.0.0) and does not list a v7 tag in the provided authoritative repository pages [1][2]. So the GitHub Action reference codecov/codecov-action@refs/tags/v7 would not resolve to a valid tag in this repository based on these sources; the highest tag shown is v6.0.0 under refs/tags/v6.0.0 [1]. For using the action in workflows, the repository README recommends using a major tag like @v5 and shows the uses: codecov/codecov-action@v5 pattern; the tag selection should therefore be updated to an existing major version such as @v6 if you want the latest supported major tag shown in the repo sources [3].

Citations:


🌐 Web query:

site:github.com codecov/codecov-action v7 refs/heads

💡 Result:

There is no “codecov/codecov-action v7”. The Codecov GitHub Action repository shows releases up through v6 (e.g., “v6.0.0 Latest … Mar 26, 2026”) rather than v7.[1][2] So a reference like “codecov/codecov-action@v7” (or “codecov/codecov-action v7 refs/heads …”) is not a valid version tag, and you should use an existing major tag (such as @v6) or pin to a specific commit/branch ref.[1][3] If your goal is to use the action with a branch ref, GitHub supports “owner/repo@” syntax (e.g., @main or @refs/heads/), and the repository is reachable at those refs (example path shown for refs/heads/main).[4] Example (use an existing release tag): - uses: codecov/codecov-action@v6 Example (use a branch ref): - uses: codecov/codecov-action@refs/heads/main Codecov action configuration inputs include (at least) fail_ci_if_error and token, as described in the action README and action.yml.[3][5]

Citations:


🌐 Web query:

codecov/codecov-action v6.0.0 commit SHA

💡 Result:

The commit SHA associated with the v6.0.0 release of codecov/codecov-action is 57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 [1]. This version was released on March 26, 2026 [2][3].

Citations:


Fix the Codecov step ref and pin it to an immutable commit SHA.

Line 48 uses codecov/codecov-action@v7, but the Codecov action repository only provides releases up to v6 (so @v7 is not a valid version ref). Update the step to pin v6.0.0 instead: uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2.

🧰 Tools
🪛 zizmor (1.25.2)

[error] 48-48: unpinned action reference (unpinned-uses): action is not pinned to a hash (required by blanket policy)

(unpinned-uses)

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.github/workflows/ci.yml at line 48, Update the Codecov action ref used in
the GitHub Actions workflow: replace the invalid floating tag
"codecov/codecov-action@v7" with the immutable commit SHA for v6.0.0 by changing
the uses value to
"codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2"; ensure the
change occurs in the workflow step that currently contains the uses entry so CI
uses the pinned, valid release.

Source: Linters/SAST tools

@renovate
renovate Bot force-pushed the renovate/codecov-codecov-action-7.x branch from 7e5c867 to ef83a2b Compare June 18, 2026 20:59
@renovate
renovate Bot force-pushed the renovate/codecov-codecov-action-7.x branch from ef83a2b to 529b601 Compare July 12, 2026 18:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants