Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Feb 1, 2024
1 parent de65193 commit 2bf8cc9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/book-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: quarto tools install chromium

- name: Cache R packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/R/renv
key: ${{ runner.os }}-r-${{ steps.setup.outputs.installed-r-version }}-weekly-lock-${{ hashFiles('book/renv.lock') }}
Expand All @@ -49,7 +49,7 @@ jobs:
R -q -e 'renv::update(prompt = FALSE)'
- name: Cache OpenML
uses: actions/cache@v3
uses: actions/cache@v4
id: openml-cache
with:
path: book/openml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: quarto tools install chromium

- name: Cache R packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/R/renv
key: ${{ runner.os }}-r-${{ steps.setup.outputs.installed-r-version }}-lock-${{ hashFiles('book/renv.lock') }}
Expand All @@ -48,7 +48,7 @@ jobs:
R -q -e 'options(Ncpus = 2); install.packages("renv", repos = "cloud.r-project.org"); renv::restore()'
- name: Cache OpenML
uses: actions/cache@v3
uses: actions/cache@v4
id: openml-cache
with:
path: book/openml
Expand Down

0 comments on commit 2bf8cc9

Please sign in to comment.