Skip to content

Commit d12e82b

Browse files
committed
Update actions/cache version to v4 in workflow files
1 parent 080053c commit d12e82b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/continuous.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666

6767
- name: Cache Build
6868
id: cache-build
69-
uses: actions/cache@v4.0.2
69+
uses: actions/cache@v4
7070
with:
7171
path: ${{ env.CACHE_PATH }}
7272
key: ${{ runner.os }}-${{ matrix.config }}-cache

.github/workflows/coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
- name: Cache Build
3737
id: cache-build
38-
uses: actions/cache@v4.0.2
38+
uses: actions/cache@v4
3939
with:
4040
path: ${{ env.CACHE_PATH }}
4141
key: coverage-cache

.github/workflows/cuda.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: |
3737
sudo apt-get install ccache
3838
echo 'CACHE_PATH=~/.cache/ccache' >> "$GITHUB_ENV"
39-
39+
4040
- name: cuda-toolkit
4141
uses: Jimver/[email protected]
4242
with:
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: Cache Build
5151
id: cache-build
52-
uses: actions/cache@v4.0.2
52+
uses: actions/cache@v4
5353
with:
5454
path: ${{ env.CACHE_PATH }}
5555
key: ${{ runner.os }}-${{ matrix.config }}-cache

.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
3232
- name: Cache Build
3333
id: cache-build
34-
uses: actions/cache@v4.0.2
34+
uses: actions/cache@v4
3535
with:
3636
path: ${{ env.CACHE_PATH }}
3737
key: docs-cache

.github/workflows/python.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
6363
- name: Cache Build
6464
id: cache-build
65-
uses: actions/cache@v4.0.2
65+
uses: actions/cache@v4
6666
with:
6767
path: ${{ env.CACHE_PATH }}
6868
key: ${{ runner.os }}-Python${{ matrix.python-version }}-cache

0 commit comments

Comments
 (0)