Skip to content

Commit ca4fa09

Browse files
Bump actions/cache from 4 to 5 (#438)
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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ae98e94 commit ca4fa09

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/caching-envs-example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
shell: bash
5050

5151
- name: Cache Conda env
52-
uses: actions/cache@v4
52+
uses: actions/cache@v5
5353
with:
5454
path: ${{ env.CONDA }}/envs
5555
key:

.github/workflows/caching-example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- uses: actions/[email protected]
3232
- name: Cache conda
33-
uses: actions/cache@v4
33+
uses: actions/cache@v5
3434
env:
3535
# Increase this value to reset cache if etc/example-environment.yml has not changed
3636
CACHE_NUMBER: 2
@@ -58,7 +58,7 @@ jobs:
5858
steps:
5959
- uses: actions/[email protected]
6060
- name: Cache conda
61-
uses: actions/cache@v4
61+
uses: actions/cache@v5
6262
env:
6363
# Increase this value to reset cache if etc/example-environment.yml has not changed
6464
CACHE_NUMBER: 2

0 commit comments

Comments
 (0)