From 3138adef8f9a759a6f327c8f65edfe4fd41a0021 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Jul 2022 14:00:58 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 2.1.7 to 3.0.4 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3.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/v2.1.7...v3.0.4) --- 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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 979d26b3..c56e351a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: # id: yarn-cache-dir-path # run: echo "::set-output name=dir::$(yarn cache dir)" - # - uses: actions/cache@v2.1.7 + # - uses: actions/cache@v3.0.4 # id: yarn-cache # with: # path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -39,13 +39,13 @@ jobs: # https://dev.to/mpocock1/how-to-cache-nodemodules-in-github-actions-with-yarn-24e - name: Restore Yarn dependencies - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.0.4 with: path: '**/node_modules' key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} - name: Restore Linter Caches - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.0.4 with: path: | .eslintcache @@ -54,7 +54,7 @@ jobs: # https://github.com/zeit/next.js/blob/master/errors/no-cache.md - name: Restore .next/cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.0.4 with: path: ${{ github.workspace }}/packages/@visi/web-client/.next/cache key: ${{ runner.os }}-next-${{ hashFiles('**/yarn.lock') }}