File tree 4 files changed +25
-27
lines changed
4 files changed +25
-27
lines changed Original file line number Diff line number Diff line change @@ -20,14 +20,14 @@ jobs:
20
20
- name : Install Tar
21
21
run : apk add --no-cache tar
22
22
23
- - name : Cache Deps & Build
24
- uses : actions/cache@v2
23
+ - name : Restore dependencies cache
24
+ uses : actions/cache@v3
25
25
with :
26
- key : ${{github.ref}}-deps-build-cache
27
26
path : |
28
- ./deps
29
- ./_build
30
- !._build/dev/lib/error_message/
27
+ _build
28
+ deps
29
+ key : ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}-${{ hashFiles('./.tool-versions') }}
30
+ restore-keys : ${{ runner.os }}-mix-
31
31
32
32
- name : Install Dependencies
33
33
run : mix deps.get
Original file line number Diff line number Diff line change @@ -20,14 +20,14 @@ jobs:
20
20
- name : Install Tar
21
21
run : apk add --no-cache tar
22
22
23
- - name : Cache Deps & Build
24
- uses : actions/cache@v2
23
+ - name : Restore dependencies cache
24
+ uses : actions/cache@v3
25
25
with :
26
- key : ${{github.ref}}-deps-build-cache
27
26
path : |
28
- ./deps
29
- ./_build
30
- !._build/dev/lib/error_message/
27
+ _build
28
+ deps
29
+ key : ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}-${{ hashFiles('./.tool-versions') }}
30
+ restore-keys : ${{ runner.os }}-mix-
31
31
32
32
- name : Install Dependencies
33
33
run : mix deps.get
Original file line number Diff line number Diff line change @@ -20,17 +20,15 @@ jobs:
20
20
- name : Install Tar
21
21
run : apk add --no-cache tar
22
22
23
- - name : Cache Deps & Build
24
- uses : actions/cache@v2
23
+ - name : Restore dependencies cache
24
+ uses : actions/cache@v3
25
25
with :
26
- key : ${{ runner.os }}-mix-dialyzer-${{ hashFiles('**/mix.lock') }}
27
26
path : |
28
- deps
29
- _build
30
- dialyzer
31
- !._build/dev/lib/error_message/
32
- restore-keys : |
33
- ${{ runner.os }}-mix-dialyzer-
27
+ _build
28
+ deps
29
+ dialyzer
30
+ key : ${{ runner.os }}-dialyzer-${{ hashFiles('**/mix.lock') }}-${{ hashFiles('./.tool-versions') }}
31
+ restore-keys : ${{ runner.os }}-dialyzer-
34
32
35
33
- name : Install Dependencies
36
34
run : mix deps.get
Original file line number Diff line number Diff line change @@ -20,14 +20,14 @@ jobs:
20
20
- name : Install Tar
21
21
run : apk add --no-cache tar
22
22
23
- - name : Cache Deps & Build
24
- uses : actions/cache@v2
23
+ - name : Restore dependencies cache
24
+ uses : actions/cache@v3
25
25
with :
26
- key : ${{github.ref}}-deps-build-cache
27
26
path : |
28
- ./deps
29
- ./_build
30
- !._build/dev/lib/error_message/
27
+ _build
28
+ deps
29
+ key : ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}-${{ hashFiles('./.tool-versions') }}
30
+ restore-keys : ${{ runner.os }}-mix-
31
31
32
32
- name : Install Dependencies
33
33
run : mix deps.get
You can’t perform that action at this time.
0 commit comments