Skip to content

Commit ddf2ac4

Browse files
Bump actions/cache from 3 to 4 (#19323)
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-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 6497e36 commit ddf2ac4

6 files changed

+7
-7
lines changed

.github/workflows/ci-examples-app.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
run: python .actions/assistant.py replace_oldest_ver
6868

6969
- name: pip wheels cache
70-
uses: actions/cache/restore@v3
70+
uses: actions/cache/restore@v4
7171
with:
7272
path: ${{ env.PYPI_CACHE_DIR }}
7373
key: pypi_wheels

.github/workflows/ci-tests-app.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
run: python .actions/assistant.py replace_oldest_ver
7474

7575
- name: pip wheels cache
76-
uses: actions/cache/restore@v3
76+
uses: actions/cache/restore@v4
7777
with:
7878
path: ${{ env.PYPI_CACHE_DIR }}
7979
key: pypi_wheels

.github/workflows/ci-tests-fabric.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
done
115115
116116
- name: pip wheels cache
117-
uses: actions/cache/restore@v3
117+
uses: actions/cache/restore@v4
118118
with:
119119
path: ${{ env.PYPI_CACHE_DIR }}
120120
key: pypi_wheels

.github/workflows/ci-tests-pytorch.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
cat requirements/pytorch/base.txt
121121
122122
- name: pip wheels cache
123-
uses: actions/cache/restore@v3
123+
uses: actions/cache/restore@v4
124124
with:
125125
path: ${{ env.PYPI_CACHE_DIR }}
126126
key: pypi_wheels
@@ -161,7 +161,7 @@ jobs:
161161
cache-key: "pypi_wheels"
162162

163163
- name: Cache datasets
164-
uses: actions/cache@v3
164+
uses: actions/cache@v4
165165
with:
166166
path: Datasets
167167
key: pl-dataset

.github/workflows/code-checks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
python-version: "3.10.6"
3535

3636
- name: Mypy cache
37-
uses: actions/cache@v3
37+
uses: actions/cache@v4
3838
with:
3939
path: .mypy_cache
4040
key: mypy-${{ hashFiles('requirements/typing.txt') }}

.github/workflows/docs-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
pip install lai-sphinx-theme -U -f ${PYPI_LOCAL_DIR}
8181
8282
- name: pip wheels cache
83-
uses: actions/cache/restore@v3
83+
uses: actions/cache/restore@v4
8484
with:
8585
path: ${{ env.PYPI_CACHE_DIR }}
8686
key: pypi_wheels

0 commit comments

Comments
 (0)