From f36168bdf7f55a0d93a28014afeb87ce44030325 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Jun 2026 04:52:19 +0000 Subject: [PATCH] ci(deps): bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 2 +- .github/workflows/update.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8a14b17..4a6e424 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -37,7 +37,7 @@ jobs: run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_ENV - name: Cache pnpm dependencies and build directory - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ${{ env.STORE_PATH }} diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 587001d..1fa3977 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -30,7 +30,7 @@ jobs: run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_ENV - name: Cache pnpm modules - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.STORE_PATH }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}