Skip to content

Commit 5324257

Browse files
committed
Auto merge of #5650 - imbsky:actions-cache-v2, r=flip1995
Bump actions/cache from v1 to v2 We just released v2. That includes a lot of improvements. https://github.com/actions/cache/releases/tag/v2.0.0 changelog: none
2 parents f28c6de + 0ad0810 commit 5324257

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/clippy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: cargo update
5050

5151
- name: Cache cargo dir
52-
uses: actions/cache@v1
52+
uses: actions/cache@v2
5353
with:
5454
path: ~/.cargo
5555
key: ${{ runner.os }}-x86_64-unknown-linux-gnu-${{ hashFiles('Cargo.lock') }}

.github/workflows/clippy_bors.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
run: cargo update
9595

9696
- name: Cache cargo dir
97-
uses: actions/cache@v1
97+
uses: actions/cache@v2
9898
with:
9999
path: ~/.cargo
100100
key: ${{ runner.os }}-${{ matrix.host }}-${{ hashFiles('Cargo.lock') }}
@@ -190,7 +190,7 @@ jobs:
190190
run: cargo update
191191

192192
- name: Cache cargo dir
193-
uses: actions/cache@v1
193+
uses: actions/cache@v2
194194
with:
195195
path: ~/.cargo
196196
key: ${{ runner.os }}-x86_64-unknown-linux-gnu-${{ hashFiles('Cargo.lock') }}
@@ -269,7 +269,7 @@ jobs:
269269
run: cargo update
270270

271271
- name: Cache cargo dir
272-
uses: actions/cache@v1
272+
uses: actions/cache@v2
273273
with:
274274
path: ~/.cargo
275275
key: ${{ runner.os }}-x86_64-unknown-linux-gnu-${{ hashFiles('Cargo.lock') }}

0 commit comments

Comments
 (0)