Skip to content

Commit

Permalink
MAINT: upgrade to actions/cache@v4 (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer authored Feb 1, 2024
1 parent 04ff8c2 commit 12185ea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
sudo apt-get update -y
sudo apt-get install -y cm-super dvipng inkscape latexmk texlive-fonts-extra texlive-latex-extra texlive-xetex xindy
- name: Fetch Julia cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: |
julia-${{hashFiles('julia/Manifest.toml')}}-${{hashFiles('**/*.jl')}}
Expand All @@ -103,7 +103,7 @@ jobs:
julia --version
julia --project=./julia -e 'import Pkg; Pkg.instantiate()'
- name: Fetch SymPy cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: |
sympy-${{hashFiles('.constraints/py3.*.txt')}}-${{hashFiles('src/**')}}-${{hashFiles('docs/**.ipynb')}}
Expand All @@ -112,7 +112,7 @@ jobs:
sympy-${{hashFiles('.constraints/py3.*.txt')}}
path: ~/.sympy-cache*/
- name: Fetch Jupyter cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: |
jupyter-cache-${{hashFiles('.constraints/py3.*.txt', 'data/**', 'src/**')}}-${{hashFiles('docs/**')}}
Expand All @@ -121,7 +121,7 @@ jobs:
path: |
./docs/_build/.jupyter_cache
- name: Fetch output files
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: |
output-files-${{hashFiles('.constraints/py3.*.txt', 'data/**', 'src/**')}}-${{hashFiles('docs/**')}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/julia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
with:
version: ${{ steps.extract-version.outputs.version }}
- name: Fetch Julia cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: |
julia-${{hashFiles('julia/Manifest.toml')}}-${{hashFiles('**/*.jl')}}
Expand Down

0 comments on commit 12185ea

Please sign in to comment.