Skip to content

Commit e2cfdee

Browse files
Bump actions/cache from 4 to 5 (#78)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e155328 commit e2cfdee

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ jobs:
5757

5858
- name: Stan build caching
5959
# note: not quite working since we use a development branch of Stan
60-
uses: actions/cache@v4
60+
uses: actions/cache@v5
6161
id: stan-cache
6262
with:
6363
path: ./stan/
6464
key: ${{ runner.os }}-stan-${{ hashFiles('stan/src/stan/version.hpp') }}-v${{ env.CACHE_VERSION }}
6565

6666
# we use the cache here to build the Stan models once for multiple interfaces
6767
- name: Set up test model cache
68-
uses: actions/cache@v4
68+
uses: actions/cache@v5
6969
id: test-models
7070
with:
7171
path: ./test_models/
@@ -95,14 +95,14 @@ jobs:
9595
python-version: ${{ matrix.python-version }}
9696

9797
- name: Restore Stan
98-
uses: actions/cache@v4
98+
uses: actions/cache@v5
9999
id: stan-cache
100100
with:
101101
path: ./stan/
102102
key: ${{ runner.os }}-stan-${{ hashFiles('stan/src/stan/version.hpp') }}-v${{ env.CACHE_VERSION }}
103103

104104
- name: Restore built models
105-
uses: actions/cache@v4
105+
uses: actions/cache@v5
106106
id: test-models
107107
with:
108108
path: ./test_models/
@@ -156,13 +156,13 @@ jobs:
156156
any::posterior
157157
158158
- name: Restore Stan
159-
uses: actions/cache@v4
159+
uses: actions/cache@v5
160160
with:
161161
path: ./stan/
162162
key: ${{ runner.os }}-stan-${{ hashFiles('stan/src/stan/version.hpp') }}-v${{ env.CACHE_VERSION }}
163163

164164
- name: Restore built models
165-
uses: actions/cache@v4
165+
uses: actions/cache@v5
166166
id: test-models
167167
with:
168168
path: ./test_models/
@@ -205,14 +205,14 @@ jobs:
205205
channel: ${{ matrix.julia-version }}
206206

207207
- name: Restore Stan
208-
uses: actions/cache@v4
208+
uses: actions/cache@v5
209209
id: stan-cache
210210
with:
211211
path: ./stan/
212212
key: ${{ runner.os }}-stan-${{ hashFiles('stan/src/stan/version.hpp') }}-v${{ env.CACHE_VERSION }}
213213

214214
- name: Restore built models
215-
uses: actions/cache@v4
215+
uses: actions/cache@v5
216216
id: test-models
217217
with:
218218
path: ./test_models/

0 commit comments

Comments
 (0)