From 72bd6732e4edc7aca6ef789f5d0059c32b1667a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 20:50:21 +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/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d16d90..6ea9f1e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -123,7 +123,7 @@ jobs: env: PYTHON: "" - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos files: ./lcov.info # optional From 68f6b6e920c39628647d6dbb705c4a407ec4ae8a Mon Sep 17 00:00:00 2001 From: Joshua Lampert Date: Fri, 2 Feb 2024 09:30:37 +0100 Subject: [PATCH 2/3] add CODECOV_TOKEN to env for codecov action --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6ea9f1e..bc673fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -131,6 +131,8 @@ jobs: name: codecov-umbrella # optional fail_ci_if_error: true # optional (default = false) # verbose: true # optional (default = false) + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} # now required for public repos # The standard setup of Coveralls is just annoying for parallel builds, see, e.g., # https://github.com/trixi-framework/Trixi.jl/issues/691 # https://github.com/coverallsapp/github-action/issues/47 From 7984a30566f890b84e82c03320cc8fbd142ccd41 Mon Sep 17 00:00:00 2001 From: Joshua Lampert Date: Fri, 2 Feb 2024 09:35:53 +0100 Subject: [PATCH 3/3] fix whitespaces --- .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 bc673fb..b828116 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -131,8 +131,8 @@ jobs: name: codecov-umbrella # optional fail_ci_if_error: true # optional (default = false) # verbose: true # optional (default = false) - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} # now required for public repos + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} # now required for public repos # The standard setup of Coveralls is just annoying for parallel builds, see, e.g., # https://github.com/trixi-framework/Trixi.jl/issues/691 # https://github.com/coverallsapp/github-action/issues/47