Skip to content

Commit f68085a

Browse files
Bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 15fde15 commit f68085a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/check-bioc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,15 +99,15 @@ jobs:
9999

100100
- name: Cache R packages
101101
if: "!contains(github.event.head_commit.message, '/nocache') && runner.os != 'Linux'"
102-
uses: actions/cache@v4
102+
uses: actions/cache@v5
103103
with:
104104
path: ${{ env.R_LIBS_USER }}
105105
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-devel-r-devel-${{ hashFiles('.github/depends.Rds') }}
106106
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-devel-r-devel-
107107

108108
- name: Cache R packages on Linux
109109
if: "!contains(github.event.head_commit.message, '/nocache') && runner.os == 'Linux' "
110-
uses: actions/cache@v4
110+
uses: actions/cache@v5
111111
with:
112112
path: /home/runner/work/_temp/Library
113113
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-devel-r-devel-${{ hashFiles('.github/depends.Rds') }}

0 commit comments

Comments
 (0)