From cabbc517239cc60c2152f1f3319a0d33469505ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 20:27:38 +0000 Subject: [PATCH] build(deps):(deps): bump codecov/codecov-action from 5 to 7 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 5 to 7. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v5...v7) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/python_test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7f346e62..d3cece0f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -453,7 +453,7 @@ jobs: if: env.CODECOV_TOKEN != '' env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v7 with: token: ${{ env.CODECOV_TOKEN }} files: coverage/combined/total-frontend-coverage.json diff --git a/.github/workflows/python_test.yml b/.github/workflows/python_test.yml index 1975763ab..1dd096b9a 100644 --- a/.github/workflows/python_test.yml +++ b/.github/workflows/python_test.yml @@ -98,7 +98,7 @@ jobs: command: make unit_tests args="-x -vv --splits ${{ matrix.splitCount }} --group ${{ matrix.group }} --reruns 5 --cov --cov-config=src/backend/.coveragerc --cov-report=xml --cov-report=html" - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v7 if: matrix.python-version == '3.10' with: token: ${{ secrets.CODECOV_TOKEN }} @@ -166,7 +166,7 @@ jobs: DO_NOT_TRACK: true # disable telemetry reporting - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v7 if: matrix.python-version == '3.10' with: token: ${{ secrets.CODECOV_TOKEN }}