From f45eaf4af4582e74fe2e0636c91ad8b98b63f85b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 04:46:29 +0000 Subject: [PATCH] chore(deps): Bump actions/cache from 3.0.11 to 4.0.0 Bumps [actions/cache](https://github.com/actions/cache) from 3.0.11 to 4.0.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/v3.0.11...v4.0.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c1564005..c579dc7a0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: id: yarn-cache run: echo "::set-output name=dir::$(yarn cache dir)" - name: Restore Yarn cache - uses: actions/cache@v3.0.11 + uses: actions/cache@v4.0.0 with: path: ${{ steps.yarn-cache.outputs.dir }} key: yarn-cache-${{ hashFiles('yarn.lock') }} @@ -48,7 +48,7 @@ jobs: id: yarn-cache run: echo "::set-output name=dir::$(yarn cache dir)" - name: Restore Yarn cache - uses: actions/cache@v3.0.11 + uses: actions/cache@v4.0.0 with: path: ${{ steps.yarn-cache.outputs.dir }} key: yarn-cache-${{ hashFiles('yarn.lock') }}