From e1de1165071cb2943314538285682607a6f05681 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Apr 2026 08:26:21 +0000 Subject: [PATCH] build(deps): bump actions/cache from 4 to 5 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](https://github.com/actions/cache/compare/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] --- .github/workflows/gym.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/gym.yml b/.github/workflows/gym.yml index 2cc57ac..bd10ee6 100644 --- a/.github/workflows/gym.yml +++ b/.github/workflows/gym.yml @@ -60,7 +60,7 @@ jobs: run: npm install -g node-gyp@11 - name: Cache pnpm store - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.local/share/pnpm/store key: pnpm-store-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }} @@ -90,7 +90,7 @@ jobs: - name: Cache scip-go binary if: matrix.language == 'go' id: cache-scip-go - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/go/bin key: scip-go-${{ runner.os }}-${{ env.SCIP_GO_VERSION }} @@ -121,7 +121,7 @@ jobs: - name: Cache cargo registry if: matrix.language == 'rust' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry/index @@ -133,7 +133,7 @@ jobs: - name: Cache pip wheels if: matrix.language == 'python' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pip key: pip-${{ runner.os }}-${{ hashFiles('packages/gym/corpus/repos/python/**/pyproject.toml', 'packages/gym/corpus/repos/python/**/requirements*.txt') }} @@ -264,7 +264,7 @@ jobs: run: npm install -g node-gyp@11 - name: Cache pnpm store - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.local/share/pnpm/store key: pnpm-store-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}