Skip to content

Commit f378bb5

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] <support@github.com>
1 parent 977a3b4 commit f378bb5

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/test_python_cplusplus.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Cache
24-
uses: actions/cache@v4
24+
uses: actions/cache@v5
2525
with:
2626
path: |
2727
~/.cache/pooch
@@ -137,7 +137,7 @@ jobs:
137137
python-version: ${{ matrix.python-version }}
138138

139139
- name: Cache
140-
uses: actions/cache@v4
140+
uses: actions/cache@v5
141141
with:
142142
path: |
143143
~/.cache/pooch
@@ -222,7 +222,7 @@ jobs:
222222
python-version: ${{ matrix.python-version }}
223223

224224
- name: Cache
225-
uses: actions/cache@v4
225+
uses: actions/cache@v5
226226
with:
227227
path: |
228228
~/.cache/pooch
@@ -292,7 +292,7 @@ jobs:
292292
echo "pooch-cache=$(source venv/bin/activate && python -c 'import pooch; print(pooch.os_cache("pooch"))')" >> $GITHUB_ENV
293293
294294
- name: Cache Pooch Directory
295-
uses: actions/cache@v4
295+
uses: actions/cache@v5
296296
with:
297297
path: ${{ env.pooch-cache }}
298298
key: ${{ runner.os }}-py${{ matrix.python-version }}-${{ github.job }}
@@ -315,7 +315,7 @@ jobs:
315315

316316
steps:
317317
- name: Cache
318-
uses: actions/cache@v4
318+
uses: actions/cache@v5
319319
with:
320320
path: |
321321
~/Library/Caches/pooch
@@ -352,7 +352,7 @@ jobs:
352352
echo "pooch-cache=$(source venv/bin/activate && python -c 'import pooch; print(pooch.os_cache("pooch"))')" >> $GITHUB_ENV
353353
354354
- name: Cache Pooch Directory
355-
uses: actions/cache@v4
355+
uses: actions/cache@v5
356356
with:
357357
path: ${{ env.pooch-cache }}
358358
key: ${{ runner.os }}-py${{ matrix.python-version }}-${{ github.job }}

.github/workflows/test_python_ver_matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
echo "pooch-cache=$(source venv/bin/activate && python -c 'import pooch; print(pooch.os_cache("pooch"))')" >> $GITHUB_ENV
6363
6464
- name: Cache Pooch Directory
65-
uses: actions/cache@v4
65+
uses: actions/cache@v5
6666
with:
6767
path: ${{ env.pooch-cache }}
6868
key: ${{ runner.os }}-py${{ matrix.python-version }}-${{ github.job }}

.github/workflows/test_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
shell: bash
6666

6767
- name: Cache Pooch Directory
68-
uses: actions/cache@v4
68+
uses: actions/cache@v5
6969
with:
7070
path: ${{ env.pooch-cache }}
7171
key: ${{ runner.os }}-py${{ matrix.python-version }}-${{ github.job }}

0 commit comments

Comments
 (0)