diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 9e4b25f..c8a67a5 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -32,8 +32,7 @@ jobs: - uses: julia-actions/setup-julia@v2 with: version: '1.11.7' - - uses: julia-actions/cache@v2 - id: julia-cache + - uses: julia-actions/cache@v3 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 fb1758e..355463c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,8 +54,7 @@ jobs: with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - - uses: julia-actions/cache@v2 - id: julia-cache + - uses: julia-actions/cache@v3 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 296c0d6..2756d4b 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -35,18 +35,9 @@ jobs: steps: - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v2 - - uses: julia-actions/cache@v2 - id: julia-cache + - uses: julia-actions/cache@v3 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 }}