From 603e6bb729ec12c33c9da3d633a2452c71a7b8d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 16:31:33 +0000 Subject: [PATCH] ci: 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] --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index c2ce43d..3c9a25f 100644 --- a/action.yml +++ b/action.yml @@ -107,7 +107,7 @@ runs: # ---- 2. Cache pip packages ---------------------------------------------- - name: Cache pip packages if: inputs.cache == 'true' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pip key: roam-pip-${{ runner.os }}-py${{ inputs.python-version }}-${{ inputs.version }} @@ -117,7 +117,7 @@ runs: # ---- 3. Cache roam index (SQLite DB) ------------------------------------ - name: Cache roam index if: inputs.cache == 'true' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .roam/ key: roam-index-${{ runner.os }}-${{ hashFiles('**/*.py', '**/*.js', '**/*.ts', '**/*.go', '**/*.rs', '**/*.java', '**/*.rb', '**/*.php', '**/*.cs', '**/*.c', '**/*.cpp') }}