From 59788e977b14e4beb79783b960fa9ccaafd92367 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Mar 2026 01:17:58 +0000 Subject: [PATCH 1/2] Bump codecov/codecov-action from 5 to 6 in the github-actions group Bumps the github-actions group with 1 update: [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `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 dependency-group: github-actions ... 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 0c942af..df56cb3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,14 +53,14 @@ jobs: - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v5 + - uses: codecov/codecov-action@v6 # (NOT pull request) OR ( (pull request) AND (NOT from a fork) ) # In this case, secrets are available, so we can use the `CODECOV_TOKEN`. if: github.event_name != 'pull_request' || github.repository == github.event.pull_request.head.repo.full_name with: file: lcov.info token: ${{ secrets.CODECOV_TOKEN }} - - uses: codecov/codecov-action@v5 + - uses: codecov/codecov-action@v6 # (pull request) AND (from a fork) # In this case, secrets are NOT available, so we have to rely on Codecov's "tokenless uploads for GitHub Actions" feature. if: github.event_name == 'pull_request' && github.repository != github.event.pull_request.head.repo.full_name From 850cb3b2536e03f4bb429915daed37ccac3dc36e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= <765740+giordano@users.noreply.github.com> Date: Mon, 30 Mar 2026 05:31:28 +0200 Subject: [PATCH 2/2] Apply suggestions from code review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Mosè Giordano <765740+giordano@users.noreply.github.com> --- .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 df56cb3..25eeedc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,11 +58,11 @@ jobs: # In this case, secrets are available, so we can use the `CODECOV_TOKEN`. if: github.event_name != 'pull_request' || github.repository == github.event.pull_request.head.repo.full_name with: - file: lcov.info + files: lcov.info token: ${{ secrets.CODECOV_TOKEN }} - uses: codecov/codecov-action@v6 # (pull request) AND (from a fork) # In this case, secrets are NOT available, so we have to rely on Codecov's "tokenless uploads for GitHub Actions" feature. if: github.event_name == 'pull_request' && github.repository != github.event.pull_request.head.repo.full_name with: - file: lcov.info + files: lcov.info