From 7037161fad9867a9216d4b6d862ee0246b9f6efb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 15:33:43 +0000 Subject: [PATCH] build(deps): bump actions/cache from 4.1.2 to 4.2.0 Bumps [actions/cache](https://github.com/actions/cache) from 4.1.2 to 4.2.0. - [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.1.2...v4.2.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/buildandtest.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/buildandtest.yml b/.github/workflows/buildandtest.yml index a3394326..84d63607 100644 --- a/.github/workflows/buildandtest.yml +++ b/.github/workflows/buildandtest.yml @@ -32,7 +32,7 @@ jobs: id: compute_lockfile_hash run: echo "hash=${{ hashFiles('yarn.lock') }}" >> "$GITHUB_OUTPUT" - name: Check dependency cache - uses: actions/cache@v4.1.2 + uses: actions/cache@v4.2.0 id: cache_dependencies with: path: ${{ env.CACHED_DEPENDENCY_PATHS }} @@ -56,12 +56,12 @@ jobs: - name: Set up Node uses: actions/setup-node@v4 - name: Check dependency cache - uses: actions/cache@v4.1.2 + uses: actions/cache@v4.2.0 with: path: ${{ env.CACHED_DEPENDENCY_PATHS }} key: ${{ needs.job_install_deps.outputs.dependency_cache_key }} - name: Check build cache - uses: actions/cache@v4.1.2 + uses: actions/cache@v4.2.0 id: cache_built_packages with: path: ${{ env.CACHED_BUILD_PATHS }} @@ -114,12 +114,12 @@ jobs: - name: Set up Node uses: actions/setup-node@v4 - name: Check dependency cache - uses: actions/cache@v4.1.2 + uses: actions/cache@v4.2.0 with: path: ${{ env.CACHED_DEPENDENCY_PATHS }} key: ${{ needs.job_build.outputs.dependency_cache_key }} - name: Check build cache - uses: actions/cache@v4.1.2 + uses: actions/cache@v4.2.0 with: path: ${{ env.CACHED_BUILD_PATHS }} key: ${{ env.BUILD_CACHE_KEY }} @@ -157,12 +157,12 @@ jobs: - name: Set up Node uses: actions/setup-node@v4 - name: Check dependency cache - uses: actions/cache@v4.1.2 + uses: actions/cache@v4.2.0 with: path: ${{ env.CACHED_DEPENDENCY_PATHS }} key: ${{ needs.job_build.outputs.dependency_cache_key }} - name: Check build cache - uses: actions/cache@v4.1.2 + uses: actions/cache@v4.2.0 with: path: ${{ env.CACHED_BUILD_PATHS }} key: ${{ env.BUILD_CACHE_KEY }} @@ -180,12 +180,12 @@ jobs: - name: Set up Node uses: actions/setup-node@v4 - name: Check dependency cache - uses: actions/cache@v4.1.2 + uses: actions/cache@v4.2.0 with: path: ${{ env.CACHED_DEPENDENCY_PATHS }} key: ${{ needs.job_build.outputs.dependency_cache_key }} - name: Check build cache - uses: actions/cache@v4.1.2 + uses: actions/cache@v4.2.0 with: path: ${{ env.CACHED_BUILD_PATHS }} key: ${{ env.BUILD_CACHE_KEY }}