@@ -103,7 +103,7 @@ jobs:
103
103
# out-of-date one, so we benefit from using restore-keys to bootstrap it
104
104
# with a previous index.
105
105
- name : Cache Pantry Package Index
106
- uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
106
+ uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
107
107
with :
108
108
# Everything except the decompressed Hackage index tarball. Why is
109
109
# that even materialized to disk?
@@ -120,7 +120,7 @@ jobs:
120
120
# GHC takes a while to gunzip and configure; let's try caching it
121
121
# pre-configured with zstd.
122
122
- name : Cache Configured GHC
123
- uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
123
+ uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
124
124
with :
125
125
# Omit the tarball itself; it'll double the cache size assuming
126
126
# similar compression ratios.
@@ -145,7 +145,7 @@ jobs:
145
145
# other builds with the same GHC version to benefit from any packages in
146
146
# common between two lockfiles.
147
147
- name : Cache Dependencies
148
- uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
148
+ uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
149
149
with :
150
150
# The Stack global work directory, minus GHC installations (already
151
151
# extracted from a tarball) and the Pantry package index (already
@@ -181,7 +181,7 @@ jobs:
181
181
# Cache pre-built modules for incremental builds, making sure to keep
182
182
# builds with different dependencies separate.
183
183
- name : Cache Modules
184
- uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
184
+ uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
185
185
with :
186
186
path : " **/.stack-work"
187
187
key : |
0 commit comments