From 382cc3b2138abed20adc9de01efde7cd519c86d6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Apr 2026 10:32:56 +0200 Subject: [PATCH] build(deps): bump codecov/codecov-action from 5 to 6 (#4897) 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](https://github.com/codecov/codecov-action/compare/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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Fleny --- .github/workflows/e2e-test.yml | 2 +- .github/workflows/integration-test.yml | 2 +- .github/workflows/unit-test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index b8186a25d..78d2bdfd0 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -35,7 +35,7 @@ jobs: PROXY_REST_SECRET: ${{ secrets.PROXY_REST_SECRET }} PROXY_REST_URL: ${{ secrets.PROXY_REST_URL }} - name: Collect and upload the coverage report - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 if: ${{ inputs.event_name != 'pull_request' }} with: files: ./packages/${{ inputs.package }}/coverage/lcov.info diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 22a4f1e14..df756e573 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -27,7 +27,7 @@ jobs: run: yarn test:integration --filter=./packages/${{ inputs.package }} timeout-minutes: 3 - name: Collect and upload the coverage report - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: files: ./packages/${{ inputs.package }}/coverage/lcov.info flags: ${{ inputs.package }}-integration,${{ inputs.package }} diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index f51e94729..4c35bf0fc 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -27,7 +27,7 @@ jobs: run: yarn test:unit --filter=./packages/${{ inputs.package }} timeout-minutes: 1 - name: Collect and upload the coverage report - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: files: ./packages/${{ inputs.package }}/coverage/lcov.info flags: ${{ inputs.package }}-unit,${{ inputs.package }}