Skip to content

Commit 183299b

Browse files
Bump actions/cache from 5 to 6
Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8f4b11c commit 183299b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/end-to-end.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
shell: Rscript {0}
2626

2727
- name: Cache R packages
28-
uses: actions/cache@v5
28+
uses: actions/cache@v6
2929
with:
3030
path: ${{ env.R_LIBS_USER }}
3131
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }}

.github/workflows/hook-tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,21 @@ jobs:
3434
shell: Rscript {0}
3535
- name: Cache R packages (macOs)
3636
if: startsWith(runner.os, 'macOS')
37-
uses: actions/cache@v5
37+
uses: actions/cache@v6
3838
with:
3939
path: ~/Library/Application Support/renv
4040
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('renv.lock') }}
4141
restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-
4242
- name: Cache R packages (Linux)
4343
if: startsWith(runner.os, 'Linux')
44-
uses: actions/cache@v5
44+
uses: actions/cache@v6
4545
with:
4646
path: ~/.local/share/renv
4747
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('renv.lock') }}
4848
restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-
4949
- name: Cache R packages (Windows)
5050
if: startsWith(runner.os, 'Windows')
51-
uses: actions/cache@v5
51+
uses: actions/cache@v6
5252
with:
5353
path: ~\AppData\Local\renv
5454
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('renv.lock') }}

0 commit comments

Comments
 (0)