Skip to content

Commit 5a7e9de

Browse files
Bump julia-actions/cache from 2 to 3 (#312)
* 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](julia-actions/cache@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] <support@github.com> * Remove manual upload of cache on failure --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mosè Giordano <mose@gnu.org>
1 parent 118b0bb commit 5a7e9de

3 files changed

Lines changed: 3 additions & 30 deletions

File tree

.github/workflows/benchmark.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ jobs:
3232
- uses: julia-actions/setup-julia@v2
3333
with:
3434
version: '1.11.7'
35-
- uses: julia-actions/cache@v2
36-
id: julia-cache
35+
- uses: julia-actions/cache@v3
3736
with:
3837
cache-name: "benchmarks"
3938
- name: Install dependencies
@@ -77,11 +76,3 @@ jobs:
7776
name: tune-json
7877
path: |
7978
**/tune.json
80-
- name: Save Julia depot cache on cancel or failure
81-
id: julia-cache-save
82-
if: cancelled() || failure()
83-
uses: actions/cache/save@v5
84-
with:
85-
path: |
86-
${{ steps.julia-cache.outputs.cache-paths }}
87-
key: ${{ steps.julia-cache.outputs.cache-key }}

.github/workflows/ci.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ jobs:
5454
with:
5555
version: ${{ matrix.version }}
5656
arch: ${{ matrix.arch }}
57-
- uses: julia-actions/cache@v2
58-
id: julia-cache
57+
- uses: julia-actions/cache@v3
5958
with:
6059
cache-name: "tests"
6160
- uses: julia-actions/julia-buildpkg@v1
@@ -66,11 +65,3 @@ jobs:
6665
files: lcov.info
6766
token: ${{ secrets.CODECOV_TOKEN }}
6867
continue-on-error: true
69-
- name: Save Julia depot cache on cancel or failure
70-
id: julia-cache-save
71-
if: cancelled() || failure()
72-
uses: actions/cache/save@v5
73-
with:
74-
path: |
75-
${{ steps.julia-cache.outputs.cache-paths }}
76-
key: ${{ steps.julia-cache.outputs.cache-key }}

.github/workflows/documentation.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,9 @@ jobs:
3535
steps:
3636
- uses: actions/checkout@v6
3737
- uses: julia-actions/setup-julia@v2
38-
- uses: julia-actions/cache@v2
39-
id: julia-cache
38+
- uses: julia-actions/cache@v3
4039
with:
4140
cache-name: "docs"
4241
- uses: julia-actions/julia-docdeploy@v1
4342
env:
4443
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
45-
- name: Save Julia depot cache on cancel or failure
46-
id: julia-cache-save
47-
if: cancelled() || failure()
48-
uses: actions/cache/save@v5
49-
with:
50-
path: |
51-
${{ steps.julia-cache.outputs.cache-paths }}
52-
key: ${{ steps.julia-cache.outputs.cache-key }}

0 commit comments

Comments
 (0)