From ca8342b30853e28873f3d27363fdab0e1e255092 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 14:12:53 +0000 Subject: [PATCH 1/2] Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... 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 1f1214b..655d093 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -28,7 +28,7 @@ jobs: os: - ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} @@ -45,7 +45,7 @@ jobs: name: Documentation runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v2 with: version: '1' From 3d98b1b2c7d52920a3ddea498a910f9c723dba82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20K=2E=20Papp?= Date: Thu, 1 Jan 2026 15:41:50 +0100 Subject: [PATCH 2/2] remove ancient coverage code --- test/coverage/Project.toml | 2 -- test/coverage/coverage-summary.jl | 12 ------------ test/coverage/coverage.jl | 9 --------- 3 files changed, 23 deletions(-) delete mode 100644 test/coverage/Project.toml delete mode 100644 test/coverage/coverage-summary.jl delete mode 100644 test/coverage/coverage.jl diff --git a/test/coverage/Project.toml b/test/coverage/Project.toml deleted file mode 100644 index 4fbdc47..0000000 --- a/test/coverage/Project.toml +++ /dev/null @@ -1,2 +0,0 @@ -[deps] -Coverage = "a2441757-f6aa-5fb2-8edb-039e3f45d037" diff --git a/test/coverage/coverage-summary.jl b/test/coverage/coverage-summary.jl deleted file mode 100644 index 36720c3..0000000 --- a/test/coverage/coverage-summary.jl +++ /dev/null @@ -1,12 +0,0 @@ -#### -#### Coverage summary, printed as "(percentage) covered". -#### -#### Useful for CI environments that just want a summary (eg a Gitlab setup). -#### - -using Coverage -cd(joinpath(@__DIR__, "..", "..")) do - covered_lines, total_lines = get_summary(process_folder()) - percentage = covered_lines / total_lines * 100 - println("($(percentage)%) covered") -end diff --git a/test/coverage/coverage.jl b/test/coverage/coverage.jl deleted file mode 100644 index de6fe46..0000000 --- a/test/coverage/coverage.jl +++ /dev/null @@ -1,9 +0,0 @@ -# only push coverage from one bot -get(ENV, "TRAVIS_OS_NAME", nothing) == "linux" || exit(0) -get(ENV, "TRAVIS_JULIA_VERSION", nothing) == "1.1" || exit(0) - -using Coverage - -cd(joinpath(@__DIR__, "..", "..")) do - Codecov.submit(Codecov.process_folder()) -end