From 6b3441c72265aa859c5068f9a1534c3e5750774f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 15:51:24 +0000 Subject: [PATCH] build(deps): bump actions/cache from 5.0.2 to 5.0.4 Bumps [actions/cache](https://github.com/actions/cache) from 5.0.2 to 5.0.4. - [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...668228422ae6a00e4ad889ee87cd7109ec5666a7) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.4 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 51541c12..ef48f698 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # V5.0.4 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # V5.0.4 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # V5.0.4 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # V5.0.4 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # V5.0.4 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # V5.0.4 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # V5.0.4 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 ecf4cddc..b03b9361 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # V5.0.4 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@668228422ae6a00e4ad889ee87cd7109ec5666a7 # V5.0.4 with: path: ${{ env.CACHED_BUILD_PATHS }} key: ${{ env.BUILD_CACHE_KEY }}