Skip to content

Commit

Permalink
Update actions/cache action to v4 (#10)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 18, 2024
1 parent 02805ba commit 1d0a535
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
with:
python-version: ${{ env.PY_VER }}
- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-pip
with:
path: ${{ env.pythonLocation }}
Expand All @@ -52,7 +52,7 @@ jobs:
version: ${{ steps.read_toml.outputs.value }}
show-versioninfo: 'true'
- name: Cache Julia packages
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
id: cache-julia
with:
path: |
Expand All @@ -66,7 +66,7 @@ jobs:
run: |
julia --project=@. --color=yes -e 'using Pkg, Dates; Pkg.instantiate(); Pkg.precompile(); Pkg.gc(collect_delay=Day(0))'
- name: Save Julia packages
uses: actions/cache/save@v3
uses: actions/cache/save@v4
if: ${{ steps.cache-julia.outputs.cache-hit != 'true' }}
with:
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linkcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
python-version: ${{ env.PY_VER }}
- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-pip
with:
path: ${{ env.pythonLocation }}
Expand Down

0 comments on commit 1d0a535

Please sign in to comment.