From 2e29931f4605eb8a036782b69b0adf5c91177509 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Apr 2026 17:49:55 +0000 Subject: [PATCH] build(deps): bump actions/cache from 5.0.2 to 5.0.5 Bumps [actions/cache](https://github.com/actions/cache) from 5.0.2 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/8b402f58fbc84540c8b491a91e594a4576fec3d7...27d5ce7f107fe9357f9df03efb73ab90386fccae) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/buildandtest.yml | 14 +++++++------- .github/workflows/sample-build.yml | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/buildandtest.yml b/.github/workflows/buildandtest.yml index 6bf03509..78839fe5 100644 --- a/.github/workflows/buildandtest.yml +++ b/.github/workflows/buildandtest.yml @@ -36,7 +36,7 @@ jobs: id: compute_lockfile_hash run: echo "hash=${{ hashFiles('yarn.lock') }}" >> "$GITHUB_OUTPUT" - name: Check dependency cache - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # V5.0.2 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # V5.0.5 id: cache_dependencies with: path: ${{ env.CACHED_DEPENDENCY_PATHS }} @@ -60,12 +60,12 @@ jobs: - name: Set up Node uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v5 - name: Check dependency cache - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # V5.0.2 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # V5.0.5 with: path: ${{ env.CACHED_DEPENDENCY_PATHS }} key: ${{ needs.job_install_deps.outputs.dependency_cache_key }} - name: Check build cache - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # V5.0.2 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # V5.0.5 id: cache_built_packages with: path: ${{ env.CACHED_BUILD_PATHS }} @@ -111,12 +111,12 @@ jobs: - name: Set up Node uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v5 - name: Check dependency cache - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # V5.0.2 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # V5.0.5 with: path: ${{ env.CACHED_DEPENDENCY_PATHS }} key: ${{ needs.job_build.outputs.dependency_cache_key }} - name: Check build cache - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # V5.0.2 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # V5.0.5 with: path: ${{ env.CACHED_BUILD_PATHS }} key: ${{ env.BUILD_CACHE_KEY }} @@ -134,12 +134,12 @@ jobs: - name: Set up Node uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v5 - name: Check dependency cache - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # V5.0.2 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # V5.0.5 with: path: ${{ env.CACHED_DEPENDENCY_PATHS }} key: ${{ needs.job_build.outputs.dependency_cache_key }} - name: Check build cache - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # V5.0.2 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # V5.0.5 with: path: ${{ env.CACHED_BUILD_PATHS }} key: ${{ env.BUILD_CACHE_KEY }} diff --git a/.github/workflows/sample-build.yml b/.github/workflows/sample-build.yml index 8606f20f..41f00431 100644 --- a/.github/workflows/sample-build.yml +++ b/.github/workflows/sample-build.yml @@ -50,12 +50,12 @@ jobs: - name: Set up Node uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v5 - name: Check dependency cache - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # V5.0.2 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # V5.0.5 with: path: ${{ env.CACHED_DEPENDENCY_PATHS }} key: ${{ inputs.dependency_cache_key }} - name: Check build cache - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # V5.0.2 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # V5.0.5 with: path: ${{ env.CACHED_BUILD_PATHS }} key: ${{ env.BUILD_CACHE_KEY }}