From cc7e665eb620384060c310a164752f8d1c833f36 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 12:36:16 +0000 Subject: [PATCH 1/2] 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 983dd802..5aa248af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: env: DEVELOPER_DIR: ${{ env.CI_XCODE }} - 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 @@ -60,7 +60,7 @@ jobs: run: | llvm-cov export -format="lcov" .build/x86_64-unknown-linux-gnu/debug/ParseServerSwiftPackageTests.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 From be15072bc0494a086d9f926d28df57318faeb714 Mon Sep 17 00:00:00 2001 From: Corey Date: Fri, 17 May 2024 10:29:48 -0400 Subject: [PATCH 2/2] 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 5aa248af..e7f84142 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,6 +41,7 @@ jobs: files: ${{join(fromJSON(steps.coverage-files.outputs.files), ',')}} env_vars: SPM fail_ci_if_error: true + token: ${{ secrets.CODECOV_TOKEN }} env: DEVELOPER_DIR: ${{ env.CI_XCODE }} @@ -64,6 +65,7 @@ jobs: with: env_vars: LINUX fail_ci_if_error: true + token: ${{ secrets.CODECOV_TOKEN }} docs: timeout-minutes: 20