From b3df116e9a24951f5e12a7b9383361a4b42216b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 03:42:23 +0000 Subject: [PATCH] ci: bump actions/cache from 4.3.0 to 6.1.0 Bumps [actions/cache](https://github.com/actions/cache) from 4.3.0 to 6.1.0. - [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/0057852bfaa89a56745cba8c7296529d2fc39830...55cc8345863c7cc4c66a329aec7e433d2d1c52a9) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' 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 e0dc2bb4..80e93340 100644 --- a/action.yml +++ b/action.yml @@ -315,7 +315,7 @@ runs: # ---- 3. Cache pip packages ---------------------------------------------- - name: Cache pip packages if: steps.validate-inputs.outputs.cache == 'true' - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ~/.cache/pip key: roam-pip-${{ runner.os }}-py${{ steps.validate-inputs.outputs.python-version }}-${{ steps.validate-inputs.outputs.version }} @@ -325,7 +325,7 @@ runs: # ---- 4. Cache roam index (SQLite DB) ------------------------------------ - name: Cache roam index if: steps.validate-inputs.outputs.cache == 'true' - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: .roam/ key: roam-index-${{ runner.os }}-${{ hashFiles('**/*.py', '**/*.js', '**/*.ts', '**/*.go', '**/*.rs', '**/*.java', '**/*.rb', '**/*.php', '**/*.cs', '**/*.c', '**/*.cpp') }}