Skip to content

Commit cb8776a

Browse files
Use actions/cache@v3 (#849)
1 parent 627e828 commit cb8776a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/conda-package.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: |
2929
echo "pkgs_dirs: [~/.conda/pkgs]" >> ~/.condarc
3030
- name: Cache conda packages
31-
uses: actions/cache@v2
31+
uses: actions/cache@v3
3232
env:
3333
CACHE_NUMBER: 1 # Increase to reset cache
3434
with:
@@ -76,7 +76,7 @@ jobs:
7676
activate-environment: ""
7777

7878
- name: Cache conda packages
79-
uses: actions/cache@v2
79+
uses: actions/cache@v3
8080
env:
8181
CACHE_NUMBER: 1 # Increase to reset cache
8282
with:
@@ -138,7 +138,7 @@ jobs:
138138
run: |
139139
echo "pkgs_dirs: [~/.conda/pkgs]" >> ~/.condarc
140140
- name: Cache conda packages
141-
uses: actions/cache@v2
141+
uses: actions/cache@v3
142142
env:
143143
CACHE_NUMBER: 1 # Increase to reset cache
144144
with:
@@ -213,7 +213,7 @@ jobs:
213213
conda install ${{ env.PACKAGE_NAME }}=%PACKAGE_VERSION% python=${{ matrix.python }} -c ${{ env.GITHUB_WORKSPACE }}/channel ${{ env.CHANNELS }} --only-deps --dry-run > lockfile
214214
more lockfile
215215
- name: Cache conda packages
216-
uses: actions/cache@v2
216+
uses: actions/cache@v3
217217
env:
218218
CACHE_NUMBER: 1 # Increase to reset cache
219219
with:
@@ -373,7 +373,7 @@ jobs:
373373
run: |
374374
echo "pkgs_dirs: [~/.conda/pkgs]" >> ~/.condarc
375375
- name: Cache conda packages
376-
uses: actions/cache@v2
376+
uses: actions/cache@v3
377377
env:
378378
CACHE_NUMBER: 1 # Increase to reset cache
379379
with:

.github/workflows/generate-coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Cache Gtest
4646
id: cache-gtest
47-
uses: actions/cache@v2
47+
uses: actions/cache@v3
4848
with:
4949
path: |
5050
/home/runner/work/googletest-release-1.11.0/install

.github/workflows/os-llvm-sycl-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Cache sycl bundle
2727
id: cache-sycl-bundle
28-
uses: actions/cache@v2
28+
uses: actions/cache@v3
2929
with:
3030
path: |
3131
/home/runner/work/sycl_bundle

0 commit comments

Comments
 (0)