From f276012f1cca87de121566ef60777ea10fc7998b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Mar 2026 02:44:29 +0000 Subject: [PATCH 1/2] Bump codecov/codecov-action from 5 to 6 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/test_benchmark_collection_models.yml | 4 ++-- .github/workflows/test_petab_sciml.yml | 2 +- .github/workflows/test_petab_test_suite.yml | 4 ++-- .github/workflows/test_python_cplusplus.yml | 8 ++++---- .github/workflows/test_sbml_semantic_test_suite.yml | 2 +- .github/workflows/test_sbml_semantic_test_suite_jax.yml | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test_benchmark_collection_models.yml b/.github/workflows/test_benchmark_collection_models.yml index 64d6a869b0..a2f797305a 100644 --- a/.github/workflows/test_benchmark_collection_models.yml +++ b/.github/workflows/test_benchmark_collection_models.yml @@ -72,7 +72,7 @@ jobs: - name: Codecov Python if: (github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev') && github.actor != 'dependabot[bot]' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage_py.xml @@ -150,7 +150,7 @@ jobs: - name: Codecov Python if: (github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev') && github.actor != 'dependabot[bot]' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage_py.xml diff --git a/.github/workflows/test_petab_sciml.yml b/.github/workflows/test_petab_sciml.yml index 192724a566..c2bac98810 100644 --- a/.github/workflows/test_petab_sciml.yml +++ b/.github/workflows/test_petab_sciml.yml @@ -83,7 +83,7 @@ jobs: - name: Codecov if: (github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev') && github.actor != 'dependabot[bot]' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage_petab_sciml.xml diff --git a/.github/workflows/test_petab_test_suite.yml b/.github/workflows/test_petab_test_suite.yml index 14828ab6de..79f8af138b 100644 --- a/.github/workflows/test_petab_test_suite.yml +++ b/.github/workflows/test_petab_test_suite.yml @@ -110,7 +110,7 @@ jobs: - name: Codecov if: github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml @@ -202,7 +202,7 @@ jobs: - name: Codecov if: (github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev') && github.actor != 'dependabot[bot]' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml diff --git a/.github/workflows/test_python_cplusplus.yml b/.github/workflows/test_python_cplusplus.yml index dfc420dccb..bcabb161ee 100644 --- a/.github/workflows/test_python_cplusplus.yml +++ b/.github/workflows/test_python_cplusplus.yml @@ -85,7 +85,7 @@ jobs: - name: Codecov Python if: (github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev') && github.actor != 'dependabot[bot]' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} files: build/coverage_py.xml @@ -105,7 +105,7 @@ jobs: - name: Codecov CPP if: (github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev') && github.actor != 'dependabot[bot]' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.info @@ -169,7 +169,7 @@ jobs: - name: Codecov Python if: (github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev') && github.actor != 'dependabot[bot]' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} files: build/coverage_py.xml @@ -189,7 +189,7 @@ jobs: - name: Codecov CPP if: (github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev') && github.actor != 'dependabot[bot]' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.info diff --git a/.github/workflows/test_sbml_semantic_test_suite.yml b/.github/workflows/test_sbml_semantic_test_suite.yml index 97725662f5..2183ab18f9 100644 --- a/.github/workflows/test_sbml_semantic_test_suite.yml +++ b/.github/workflows/test_sbml_semantic_test_suite.yml @@ -54,7 +54,7 @@ jobs: - name: Codecov SBMLSuite if: (github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev') && github.actor != 'dependabot[bot]' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage_SBMLSuite.xml diff --git a/.github/workflows/test_sbml_semantic_test_suite_jax.yml b/.github/workflows/test_sbml_semantic_test_suite_jax.yml index 7cebe2ad3d..030d9719ba 100644 --- a/.github/workflows/test_sbml_semantic_test_suite_jax.yml +++ b/.github/workflows/test_sbml_semantic_test_suite_jax.yml @@ -52,7 +52,7 @@ jobs: - name: Codecov SBMLSuiteJax if: (github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev') && github.actor != 'dependabot[bot]' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage_SBMLSuite_jax.xml From a67d96322d848c757f78e256aca718a9c2b6016c Mon Sep 17 00:00:00 2001 From: Daniel Weindl Date: Tue, 31 Mar 2026 09:12:26 +0200 Subject: [PATCH 2/2] Fix condition --- .github/workflows/test_petab_test_suite.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_petab_test_suite.yml b/.github/workflows/test_petab_test_suite.yml index 79f8af138b..6be6e54e58 100644 --- a/.github/workflows/test_petab_test_suite.yml +++ b/.github/workflows/test_petab_test_suite.yml @@ -109,7 +109,7 @@ jobs: tests/petab_test_suite/test_petab_suite.py - name: Codecov - if: github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev' + if: (github.event_name == 'pull_request' || github.repository_owner == 'AMICI-dev') && github.actor != 'dependabot[bot]' uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }}