From 045a9bcad0de3dd5470672bbd5a7dabc5eb2734d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Oct 2022 22:07:10 +0000 Subject: [PATCH] build(deps): bump actions/cache from 2 to 3.0.11 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.11. - [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/v2...v3.0.11) --- 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e42e6ee75..d88725b5f1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: id: yarn-cache run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache Yarn - uses: actions/cache@v2 + uses: actions/cache@v3.0.11 with: path: ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} @@ -101,7 +101,7 @@ jobs: id: yarn-cache run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache Yarn - uses: actions/cache@v2 + uses: actions/cache@v3.0.11 with: path: ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} @@ -153,7 +153,7 @@ jobs: # with: # node-version: 12.x # - name: Cache node_modules - # uses: actions/cache@v2 + # uses: actions/cache@v3.0.11 # with: # path: node_modules # key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }}