From cb9cff3e0027d237e5fcf9cdae68421f67db50ad Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Dec 2024 10:35:49 +0000 Subject: [PATCH 1/3] Bump codecov/codecov-action from 4 to 5 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/Check.yml | 2 +- .github/workflows/Test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Check.yml b/.github/workflows/Check.yml index 0275c58..c68b1c5 100644 --- a/.github/workflows/Check.yml +++ b/.github/workflows/Check.yml @@ -38,7 +38,7 @@ jobs: git ls-files -z -- '*.jl' | xargs -0 julia --color=yes --project --code-coverage=@ -e 'using Runic; exit(Runic.main(ARGS))' -- --check --diff if: ${{ matrix.version != 'nightly' }} - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v4 + - uses: codecov/codecov-action@v5 with: file: lcov.info env: diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index ef773d2..89798cb 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -37,7 +37,7 @@ jobs: - uses: julia-actions/julia-processcoverage@v1 with: directories: "src,juliac" - - uses: codecov/codecov-action@v4 + - uses: codecov/codecov-action@v5 with: file: lcov.info env: From 6881c85fd4ce233fd5a82379b77ba04e22420747 Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Mon, 2 Dec 2024 00:32:19 +0100 Subject: [PATCH 2/3] Update Check.yml --- .github/workflows/Check.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Check.yml b/.github/workflows/Check.yml index c68b1c5..bdfddee 100644 --- a/.github/workflows/Check.yml +++ b/.github/workflows/Check.yml @@ -40,6 +40,8 @@ jobs: - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v5 with: - file: lcov.info + files: lcov.info + plugins: noop + disable_search: true env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} From b6caa9524459321200a8895896619b81f22a19a3 Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Mon, 2 Dec 2024 00:32:35 +0100 Subject: [PATCH 3/3] Update Test.yml --- .github/workflows/Test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 89798cb..11187c3 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -39,6 +39,8 @@ jobs: directories: "src,juliac" - uses: codecov/codecov-action@v5 with: - file: lcov.info + files: lcov.info + plugins: noop + disable_search: true env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}