Skip to content

Commit d2cb701

Browse files
Bump actions/cache from 4 to 5 (#306)
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c7082bd commit d2cb701

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/main.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
submodules: recursive
5555

5656
- name: Stan build caching
57-
uses: actions/cache@v4
57+
uses: actions/cache@v5
5858
id: stan-cache
5959
with:
6060
path: ./stan/
@@ -95,7 +95,7 @@ jobs:
9595

9696
# we use the cache here to build the Stan models once for multiple interfaces
9797
- name: Set up test model cache
98-
uses: actions/cache@v4
98+
uses: actions/cache@v5
9999
id: test-models
100100
with:
101101
path: ./test_models/
@@ -126,14 +126,14 @@ jobs:
126126
python-version: ${{ matrix.python-version }}
127127

128128
- name: Restore Stan
129-
uses: actions/cache@v4
129+
uses: actions/cache@v5
130130
id: stan-cache
131131
with:
132132
path: ./stan/
133133
key: ${{ runner.os }}-stan-${{ hashFiles('stan/src/stan/version.hpp') }}-v${{ env.CACHE_VERSION }}
134134

135135
- name: Restore built models
136-
uses: actions/cache@v4
136+
uses: actions/cache@v5
137137
id: test-models
138138
with:
139139
path: ./test_models/
@@ -187,14 +187,14 @@ jobs:
187187
channel: ${{ matrix.julia-version }}
188188

189189
- name: Restore Stan
190-
uses: actions/cache@v4
190+
uses: actions/cache@v5
191191
id: stan-cache
192192
with:
193193
path: ./stan/
194194
key: ${{ runner.os }}-stan-${{ hashFiles('stan/src/stan/version.hpp') }}-v${{ env.CACHE_VERSION }}
195195

196196
- name: Restore built models
197-
uses: actions/cache@v4
197+
uses: actions/cache@v5
198198
id: test-models
199199
with:
200200
path: ./test_models/
@@ -243,13 +243,13 @@ jobs:
243243
any::devtools
244244
245245
- name: Restore Stan
246-
uses: actions/cache@v4
246+
uses: actions/cache@v5
247247
with:
248248
path: ./stan/
249249
key: ${{ runner.os }}-stan-${{ hashFiles('stan/src/stan/version.hpp') }}-v${{ env.CACHE_VERSION }}
250250

251251
- name: Restore built models
252-
uses: actions/cache@v4
252+
uses: actions/cache@v5
253253
id: test-models
254254
with:
255255
path: ./test_models/
@@ -297,13 +297,13 @@ jobs:
297297
submodules: recursive
298298

299299
- name: Restore Stan
300-
uses: actions/cache@v4
300+
uses: actions/cache@v5
301301
with:
302302
path: ./stan/
303303
key: ${{ runner.os }}-stan-${{ hashFiles('stan/src/stan/version.hpp') }}-v${{ env.CACHE_VERSION }}
304304

305305
- name: Restore built models
306-
uses: actions/cache@v4
306+
uses: actions/cache@v5
307307
id: test-models
308308
with:
309309
path: ./test_models/

0 commit comments

Comments
 (0)