From c779b00d5f6da90ca6865a23dbea9f448f5684dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 08:15:38 +0000 Subject: [PATCH] Bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0266f9e..9b9da51 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -57,7 +57,7 @@ jobs: - name: Stan build caching # note: not quite working since we use a development branch of Stan - uses: actions/cache@v5 + uses: actions/cache@v6 id: stan-cache with: path: ./stan/ @@ -65,7 +65,7 @@ jobs: # we use the cache here to build the Stan models once for multiple interfaces - name: Set up test model cache - uses: actions/cache@v5 + uses: actions/cache@v6 id: test-models with: path: ./test_models/ @@ -90,7 +90,7 @@ jobs: submodules: recursive - name: Restore Stan - uses: actions/cache@v5 + uses: actions/cache@v6 id: stan-cache with: fail-on-cache-miss: true @@ -98,7 +98,7 @@ jobs: key: ${{ matrix.os }}-stan-${{ hashFiles('stan/src/stan/version.hpp') }}-v${{ env.CACHE_VERSION }} - name: Restore built models - uses: actions/cache@v5 + uses: actions/cache@v6 id: test-models with: fail-on-cache-miss: true @@ -146,7 +146,7 @@ jobs: submodules: recursive - name: Restore Stan - uses: actions/cache@v5 + uses: actions/cache@v6 id: stan-cache with: fail-on-cache-miss: true @@ -154,7 +154,7 @@ jobs: key: ${{ matrix.os }}-stan-${{ hashFiles('stan/src/stan/version.hpp') }}-v${{ env.CACHE_VERSION }} - name: Restore built models - uses: actions/cache@v5 + uses: actions/cache@v6 id: test-models with: fail-on-cache-miss: true @@ -205,7 +205,7 @@ jobs: submodules: recursive - name: Restore Stan - uses: actions/cache@v5 + uses: actions/cache@v6 id: stan-cache with: fail-on-cache-miss: true @@ -213,7 +213,7 @@ jobs: key: ${{ matrix.os }}-stan-${{ hashFiles('stan/src/stan/version.hpp') }}-v${{ env.CACHE_VERSION }} - name: Restore built models - uses: actions/cache@v5 + uses: actions/cache@v6 id: test-models with: fail-on-cache-miss: true