Skip to content

Commit 0fa4547

Browse files
ci: bump actions/cache from 3 to 4
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-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 9c97836 commit 0fa4547

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
python-version: "3.12"
1919

20-
- uses: actions/cache@v3
20+
- uses: actions/cache@v4
2121
with:
2222
path: ~/.cache/pip
2323
key: ${{ runner.os }}-pip-docs-${{ hashFiles('docs/requirements.txt') }}

.github/workflows/doctest_validation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
echo "env_name=$(basename $LATEST_ENV .yml)" >> $GITHUB_OUTPUT
3737
3838
- name: Cache conda environment
39-
uses: actions/cache@v3
39+
uses: actions/cache@v4
4040
with:
4141
path: ~/conda_pkgs_dir
4242
key: ${{ runner.os }}-conda-${{ hashFiles(steps.find-conda-env.outputs.conda_env_file) }}
@@ -228,7 +228,7 @@ jobs:
228228
echo "env_name=$(basename $LATEST_ENV .yml)" >> $GITHUB_OUTPUT
229229
230230
- name: Cache conda environment
231-
uses: actions/cache@v3
231+
uses: actions/cache@v4
232232
with:
233233
path: ~/conda_pkgs_dir
234234
key: ${{ runner.os }}-conda-${{ hashFiles(steps.find-conda-env-spot.outputs.conda_env_file) }}

.github/workflows/sync-requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
python-version: "3.11"
2929

3030
- name: Cache pip packages
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
with:
3333
path: ~/.cache/pip
3434
key: ${{ runner.os }}-pip-sync-${{ hashFiles('requirements-dev.txt') }}

0 commit comments

Comments
 (0)