From 07b64fa6ea88fbd72aba73ce19b5b3d9675f115c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 16:53:40 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 5.0.5 to 6.0.0 Bumps [actions/cache](https://github.com/actions/cache) from 5.0.5 to 6.0.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/27d5ce7f107fe9357f9df03efb73ab90386fccae...2c8a9bd7457de244a408f35966fab2fb45fda9c8) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/soop-encode.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db3b3644..09bcfd79 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -109,7 +109,7 @@ jobs: echo "Release-please branch — skipping integration tests" fi - name: Cache git folder - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 with: path: .git key: git-folder diff --git a/.github/workflows/soop-encode.yml b/.github/workflows/soop-encode.yml index 2a61b7e2..ae96e094 100644 --- a/.github/workflows/soop-encode.yml +++ b/.github/workflows/soop-encode.yml @@ -56,7 +56,7 @@ jobs: run: bun install -g @pleaseai/soop@latest - name: Restore semantic cache - uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 with: path: .soop/cache/semantic-cache.db* key: semantic-cache-${{ github.sha }} @@ -66,7 +66,7 @@ jobs: # cache dir pinned via SOOP_TS_CACHE_DIR. Caching it makes encode/evolve # deterministic and avoids re-downloading grammars on every run. - name: Restore tree-sitter parser cache - uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 with: path: .soop/cache/tree-sitter key: tree-sitter-pack-${{ github.sha }} @@ -102,14 +102,14 @@ jobs: fi - name: Save semantic cache - uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 if: always() with: path: .soop/cache/semantic-cache.db* key: semantic-cache-${{ github.sha }} - name: Save tree-sitter parser cache - uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 + uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 if: always() with: path: .soop/cache/tree-sitter