From b7111af0339100f6d3e4f0756fb9369247c7e880 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 23:33:51 +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/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e6490a6..f5fae03 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -60,7 +60,7 @@ jobs: - name: Upload Coverage to Codecov if: ${{ contains(matrix.os, 'ubuntu') }} - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: gcov: true gcov_include: matspy/* From fd1b62475f8d7e46ddb17fc46e81441314233ac3 Mon Sep 17 00:00:00 2001 From: Adam Lugowski Date: Tue, 6 Feb 2024 20:53:36 -0800 Subject: [PATCH 2/3] Fix codecov to v4 --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f5fae03..214737b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -62,5 +62,5 @@ jobs: if: ${{ contains(matrix.os, 'ubuntu') }} uses: codecov/codecov-action@v4 with: - gcov: true - gcov_include: matspy/* + token: ${{ secrets.CODECOV_TOKEN }} + directory: matspy From 961b429d8e698731a0450c0c82cb44025f399f6a Mon Sep 17 00:00:00 2001 From: Adam Lugowski Date: Tue, 6 Feb 2024 20:56:52 -0800 Subject: [PATCH 3/3] Update tests.yml --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 214737b..55274b5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -62,5 +62,6 @@ jobs: if: ${{ contains(matrix.os, 'ubuntu') }} uses: codecov/codecov-action@v4 with: + fail_ci_if_error: true + verbose: true token: ${{ secrets.CODECOV_TOKEN }} - directory: matspy