Skip to content

Commit 815060b

Browse files
committed
Remove cache path
1 parent 67547f4 commit 815060b

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

.github/workflows/check.yml

+3-10
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,8 @@ jobs:
8787
uses: actions/cache/restore@v4
8888
id: plt_cache
8989
with:
90-
key: |
91-
plt-${{ runner.os }}-${{ env.PLT_CACHE_VERSION }}
92-
restore-keys: |
93-
plt-${{ runner.os }}-${{ env.PLT_CACHE_VERSION }}
94-
path: |
95-
priv/plts
90+
key: plt-${{ runner.os }}-${{ env.PLT_CACHE_VERSION }}
91+
restore-keys: plt-${{ runner.os }}-${{ env.PLT_CACHE_VERSION }}
9692

9793
# Create PLTs if no cache was found
9894
- name: Create PLTs
@@ -106,10 +102,7 @@ jobs:
106102
if: steps.plt_cache.outputs.cache-hit != 'true'
107103
id: plt_cache_save
108104
with:
109-
key: |
110-
plt-${{ runner.os }}-${{ env.PLT_CACHE_VERSION }}
111-
path: |
112-
priv/plts
105+
key: plt-${{ runner.os }}-${{ env.PLT_CACHE_VERSION }}
113106

114107
- name: Run dialyzer
115108
run: mix dialyzer

0 commit comments

Comments
 (0)