From 1efc86b477741cab02ff8db6f0fbb82e94d03ed3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 20:59:49 +0000 Subject: [PATCH 1/4] build(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] --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a91922aea..c5fca28d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,7 @@ jobs: env: DEVELOPER_DIR: ${{ env.CI_XCODE_LATEST }} - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: files: ${{join(fromJSON(steps.coverage-files.outputs.files), ',')}} fail_ci_if_error: false @@ -91,7 +91,7 @@ jobs: env: DEVELOPER_DIR: ${{ env.CI_XCODE_LATEST }} - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: files: ${{join(fromJSON(steps.coverage-files.outputs.files), ',')}} env_vars: SPM @@ -126,7 +126,7 @@ jobs: cat .codecov.yml | curl --data-binary @- https://codecov.io/validate llvm-cov export -format="lcov" .build/x86_64-unknown-linux-gnu/debug/ParseSwiftPackageTests.xctest -instr-profile .build/x86_64-unknown-linux-gnu/debug/codecov/default.profdata > info_linux.lcov - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: env_vars: LINUX fail_ci_if_error: true @@ -144,7 +144,7 @@ jobs: run: | swift build -v - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: env_vars: WINDOWSLATEST fail_ci_if_error: false From 9e6827eb6827afc764b81cfe01659bcab22647b4 Mon Sep 17 00:00:00 2001 From: Corey Date: Fri, 17 May 2024 07:15:07 -0400 Subject: [PATCH 2/4] Update ci.yml --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5fca28d0..266492a00 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -130,6 +130,8 @@ jobs: with: env_vars: LINUX fail_ci_if_error: true + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} windows: timeout-minutes: 15 From e1c60177e72e51cfae95b7fe2473d5068dcdfcb6 Mon Sep 17 00:00:00 2001 From: Corey Date: Fri, 17 May 2024 07:25:03 -0400 Subject: [PATCH 3/4] Update ci.yml --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 266492a00..2bbb07fa5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -130,8 +130,7 @@ jobs: with: env_vars: LINUX fail_ci_if_error: true - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + token: ${{ secrets.CODECOV_TOKEN }} windows: timeout-minutes: 15 From bc4eb0c85ce76f8ea41d790b8619a31d626ebb50 Mon Sep 17 00:00:00 2001 From: Corey Date: Fri, 17 May 2024 09:10:42 -0400 Subject: [PATCH 4/4] Update ci.yml --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 733cdeb52..a495d685b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,6 +62,7 @@ jobs: with: files: ${{join(fromJSON(steps.coverage-files.outputs.files), ',')}} fail_ci_if_error: false + token: ${{ secrets.CODECOV_TOKEN }} env: DEVELOPER_DIR: ${{ env.CI_XCODE_LATEST }} @@ -96,6 +97,7 @@ jobs: files: ${{join(fromJSON(steps.coverage-files.outputs.files), ',')}} env_vars: SPM fail_ci_if_error: false + token: ${{ secrets.CODECOV_TOKEN }} env: DEVELOPER_DIR: ${{ env.CI_XCODE_LATEST }} @@ -149,6 +151,7 @@ jobs: with: env_vars: WINDOWSLATEST fail_ci_if_error: false + token: ${{ secrets.CODECOV_TOKEN }} docs: timeout-minutes: 10