Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/breakage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

# Cache artifacts (downloads)
- name: Cache Julia artifacts
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-breakage-${{ hashFiles('**/Project.toml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:

- name: Cache Julia artifacts (self-hosted runners)
if: inputs.runner_type == 'self-hosted'
uses: actions/cache@v5
uses: actions/cache@v6
env:
cache-name: cache-artifacts
with:
Expand All @@ -101,7 +101,7 @@ jobs:

- name: Cache Julia compiled code (self-hosted runners)
if: inputs.runner_type == 'self-hosted'
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ steps.depot.outputs.path }}/compiled
key: ${{ runner.os }}-julia-compiled-${{ matrix.version }}-${{ hashFiles('**/Project.toml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

# 🧰 Cache des artefacts Julia (binaries téléchargés)
- name: Cache Julia artifacts
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-julia-artifacts-${{ hashFiles('**/Manifest.toml') }}
Expand All @@ -42,7 +42,7 @@ jobs:

# ⚡ Cache du code précompilé (.ji)
- name: Cache Julia compiled code
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.julia/compiled
key: ${{ runner.os }}-julia-compiled-${{ hashFiles('**/Manifest.toml') }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:

# 🧰 Cache des artefacts (binaires des paquets)
- name: Cache Julia artifacts
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-julia-artifacts-${{ hashFiles('docs/Manifest.toml') }}
Expand All @@ -60,7 +60,7 @@ jobs:

# ⚡ Cache du code précompilé (fichiers .ji)
- name: Cache Julia compiled code
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.julia/compiled
key: ${{ runner.os }}-julia-compiled-${{ hashFiles('docs/Manifest.toml') }}
Expand Down Expand Up @@ -122,15 +122,15 @@ jobs:
registry: control-toolbox/ct-registry

- name: Cache Julia artifacts
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ steps.depot.outputs.path }}/artifacts
key: ${{ runner.os }}-gpu-docs-julia-artifacts-${{ hashFiles('docs/Manifest.toml') }}
restore-keys: |
${{ runner.os }}-gpu-docs-julia-artifacts-

- name: Cache Julia compiled code
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ steps.depot.outputs.path }}/compiled
key: ${{ runner.os }}-gpu-docs-julia-compiled-${{ hashFiles('docs/Manifest.toml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/formatter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

# 🧰 Cache Julia artifacts (binaries de JuliaFormatter et dépendances)
- name: Cache Julia artifacts
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-formatter-artifacts-${{ hashFiles('**/formatter.lock') }}
Expand All @@ -21,7 +21,7 @@ jobs:

# ⚡ Cache du code précompilé (.ji)
- name: Cache Julia compiled code
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.julia/compiled
key: ${{ runner.os }}-formatter-compiled-${{ hashFiles('**/formatter.lock') }}
Expand Down