From b42a26074db3e1ef5bc5383b8971dc9dfb9c08e4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Apr 2026 06:54:04 +0000 Subject: [PATCH] ci(deps): bump actions/cache from 4.2.3 to 5.0.5 Bumps [actions/cache](https://github.com/actions/cache) from 4.2.3 to 5.0.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.2.3...v5.0.5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.5 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/deploy.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8186e29..426811c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -42,7 +42,7 @@ jobs: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT - name: Cache pnpm Store - uses: actions/cache@v4.2.3 # Action provides caching dependencies and build outputs to improve workflow execution time. + uses: actions/cache@v5.0.5 # Action provides caching dependencies and build outputs to improve workflow execution time. with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} # The path of the directory to cache. key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} # An explicit key for restoring and saving the cache. diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 74fe055..1373e75 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -41,7 +41,7 @@ jobs: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT - name: Cache pnpm Store - uses: actions/cache@v4.2.3 # Action provides caching dependencies and build outputs to improve workflow execution time. + uses: actions/cache@v5.0.5 # Action provides caching dependencies and build outputs to improve workflow execution time. with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} # The path of the directory to cache. key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} # An explicit key for restoring and saving the cache.