From 4e909b25998c21cff73f005acd9e84b162b3264d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 04:08:41 +0000 Subject: [PATCH 1/2] Bump julia-actions/cache from 2 to 3 Bumps [julia-actions/cache](https://github.com/julia-actions/cache) from 2 to 3. - [Release notes](https://github.com/julia-actions/cache/releases) - [Commits](https://github.com/julia-actions/cache/compare/v2...v3) --- updated-dependencies: - dependency-name: julia-actions/cache dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/benchmark.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/documentation.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 9e4b25f..46244cf 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -32,7 +32,7 @@ jobs: - uses: julia-actions/setup-julia@v2 with: version: '1.11.7' - - uses: julia-actions/cache@v2 + - uses: julia-actions/cache@v3 id: julia-cache with: cache-name: "benchmarks" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb1758e..884c606 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - - uses: julia-actions/cache@v2 + - uses: julia-actions/cache@v3 id: julia-cache with: cache-name: "tests" diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 296c0d6..a0bedff 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -35,7 +35,7 @@ jobs: steps: - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v2 - - uses: julia-actions/cache@v2 + - uses: julia-actions/cache@v3 id: julia-cache with: cache-name: "docs" From 78f91ab49518b9e738228a74885c0c3221bb8024 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Mon, 9 Mar 2026 10:09:46 +0000 Subject: [PATCH 2/2] Remove manual upload of cache on failure --- .github/workflows/benchmark.yml | 9 --------- .github/workflows/ci.yml | 9 --------- .github/workflows/documentation.yml | 9 --------- 3 files changed, 27 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 46244cf..c8a67a5 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -33,7 +33,6 @@ jobs: with: version: '1.11.7' - uses: julia-actions/cache@v3 - id: julia-cache with: cache-name: "benchmarks" - name: Install dependencies @@ -77,11 +76,3 @@ jobs: name: tune-json path: | **/tune.json - - name: Save Julia depot cache on cancel or failure - id: julia-cache-save - if: cancelled() || failure() - uses: actions/cache/save@v5 - with: - path: | - ${{ steps.julia-cache.outputs.cache-paths }} - key: ${{ steps.julia-cache.outputs.cache-key }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 884c606..355463c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,7 +55,6 @@ jobs: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - uses: julia-actions/cache@v3 - id: julia-cache with: cache-name: "tests" - uses: julia-actions/julia-buildpkg@v1 @@ -66,11 +65,3 @@ jobs: files: lcov.info token: ${{ secrets.CODECOV_TOKEN }} continue-on-error: true - - name: Save Julia depot cache on cancel or failure - id: julia-cache-save - if: cancelled() || failure() - uses: actions/cache/save@v5 - with: - path: | - ${{ steps.julia-cache.outputs.cache-paths }} - key: ${{ steps.julia-cache.outputs.cache-key }} diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index a0bedff..2756d4b 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -36,17 +36,8 @@ jobs: - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v2 - uses: julia-actions/cache@v3 - id: julia-cache with: cache-name: "docs" - uses: julia-actions/julia-docdeploy@v1 env: DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} - - name: Save Julia depot cache on cancel or failure - id: julia-cache-save - if: cancelled() || failure() - uses: actions/cache/save@v5 - with: - path: | - ${{ steps.julia-cache.outputs.cache-paths }} - key: ${{ steps.julia-cache.outputs.cache-key }}