From 91edb65b909ed107aa620d6ae0497e7de0a0cfef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Mar 2026 05:22:47 +0000 Subject: [PATCH] Bump the gha-deps group with 2 updates Bumps the gha-deps group with 2 updates: [actions/cache](https://github.com/actions/cache) and [pnpm/action-setup](https://github.com/pnpm/action-setup). Updates `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) Updates `pnpm/action-setup` from 4 to 5 - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](https://github.com/pnpm/action-setup/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-deps - dependency-name: pnpm/action-setup dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-deps ... Signed-off-by: dependabot[bot] --- .github/workflows/sync-kv.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync-kv.yaml b/.github/workflows/sync-kv.yaml index 634aaf3..02495f0 100644 --- a/.github/workflows/sync-kv.yaml +++ b/.github/workflows/sync-kv.yaml @@ -29,7 +29,7 @@ jobs: - name: Check if already synced id: cache if: github.event_name == 'push' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .manifest-synced key: manifest-${{ steps.manifest.outputs.version }} @@ -44,7 +44,7 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha || github.sha }} - - uses: pnpm/action-setup@v4 + - uses: pnpm/action-setup@v5 if: steps.cache.outputs.cache-hit != 'true' - uses: actions/setup-node@v6 @@ -73,7 +73,7 @@ jobs: mkdir -p .manifest-synced echo "${{ steps.manifest.outputs.version }}" > .manifest-synced/version - - uses: actions/cache/save@v4 + - uses: actions/cache/save@v5 if: steps.cache.outputs.cache-hit != 'true' && github.event_name != 'pull_request_target' with: path: .manifest-synced