From 33cd09bd9e8c61374d38035888b75bd0728db143 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 4 Feb 2024 01:03:19 +0000 Subject: [PATCH 1/3] 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] --- .github/workflows/nightly_regression.yml | 2 +- .github/workflows/regression.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightly_regression.yml b/.github/workflows/nightly_regression.yml index 701ca03ca..6ee9b2279 100644 --- a/.github/workflows/nightly_regression.yml +++ b/.github/workflows/nightly_regression.yml @@ -45,6 +45,6 @@ jobs: timeout-minutes: 30 - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: verbose: true diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index 7cf19c08e..a40061533 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -50,6 +50,6 @@ jobs: timeout-minutes: 30 - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: verbose: true From c5beefb804b96087781899997bacbb1c4468d15d Mon Sep 17 00:00:00 2001 From: Shahzeb Siddiqui Date: Mon, 22 Apr 2024 12:48:55 -0400 Subject: [PATCH 2/3] add CODECOV_TOKEN --- .github/workflows/regression.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index a40061533..bcc54e455 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -53,3 +53,5 @@ jobs: uses: codecov/codecov-action@v4 with: verbose: true + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} From 1ae3b00de074d62fc3365241e56405ef814881cd Mon Sep 17 00:00:00 2001 From: Shahzeb Siddiqui Date: Mon, 22 Apr 2024 12:55:30 -0400 Subject: [PATCH 3/3] add CODECOV_TOKEN in nightly regression test pipeline --- .github/workflows/nightly_regression.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/nightly_regression.yml b/.github/workflows/nightly_regression.yml index 6ee9b2279..b67ea14ad 100644 --- a/.github/workflows/nightly_regression.yml +++ b/.github/workflows/nightly_regression.yml @@ -48,3 +48,5 @@ jobs: uses: codecov/codecov-action@v4 with: verbose: true + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file