From aaf39b825460fbc527b1ff0bfd1cb4d48bbe3a0d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 14:22:26 +0530 Subject: [PATCH] chore(deps): bump codecov/codecov-action from 3 to 4 (#24775) * chore(deps): bump codecov/codecov-action from 3 to 4 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * ci: pass codecov token for server tests --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ankush Menat --- .github/workflows/server-tests.yml | 3 ++- .github/workflows/ui-tests.yml | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/server-tests.yml b/.github/workflows/server-tests.yml index 9da7244527..85fc3af6d4 100644 --- a/.github/workflows/server-tests.yml +++ b/.github/workflows/server-tests.yml @@ -194,9 +194,10 @@ jobs: uses: actions/download-artifact@v3 - name: Upload coverage data - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: name: Server + token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true verbose: true flags: server diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index ecda8cc6b1..2c94c800bc 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -203,16 +203,17 @@ jobs: uses: actions/download-artifact@v3 - name: Upload python coverage data - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: name: UIBackend + token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true verbose: true files: ./coverage-py-1/coverage.xml,./coverage-py-2/coverage.xml,./coverage-py-3/coverage.xml flags: server-ui - name: Upload JS coverage data - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: name: Cypress token: ${{ secrets.CODECOV_TOKEN }}