Skip to content

Commit 55f58d4

Browse files
committed
Use actions/cache@v2
1 parent 5d0c431 commit 55f58d4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/cd.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ jobs:
2929
- uses: rlespinasse/[email protected]
3030
- uses: actions/checkout@v2
3131
- name: Cache deps
32-
uses: actions/cache@v1
32+
uses: actions/cache@v2
3333
with:
3434
path: deps
3535
key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
3636
restore-keys: |
3737
${{ runner.os }}-mix-
3838
- name: Cache _build
39-
uses: actions/cache@v1
39+
uses: actions/cache@v2
4040
with:
4141
path: |
4242
_build

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ jobs:
3939
steps:
4040
- uses: actions/checkout@v2
4141
- name: Cache deps
42-
uses: actions/cache@v1
42+
uses: actions/cache@v2
4343
with:
4444
path: deps
4545
key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
4646
restore-keys: |
4747
${{ runner.os }}-mix-
4848
- name: Cache _build
49-
uses: actions/cache@v1
49+
uses: actions/cache@v2
5050
with:
5151
path: |
5252
_build

0 commit comments

Comments
 (0)