From 0a04c9a7a2d1a739d1db2701851466b0c5522cee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 31 Mar 2022 00:17:33 +0000 Subject: [PATCH] fix(deps): bump actions/cache from 2 to 3.0.1 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1. - [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.1) --- 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 | 2 +- .github/workflows/deploy-to-gh-pages.yml | 2 +- .github/workflows/e2e.yml | 4 ++-- .github/workflows/lighthouse.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04fe8ab8..cc2f9268 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: cache: npm - name: Next cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ${{ github.workspace }}/.next/cache key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/deploy-to-gh-pages.yml b/.github/workflows/deploy-to-gh-pages.yml index 2b16ff92..55da938c 100644 --- a/.github/workflows/deploy-to-gh-pages.yml +++ b/.github/workflows/deploy-to-gh-pages.yml @@ -33,7 +33,7 @@ jobs: cache: npm - name: Next cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ${{ github.workspace }}/.next/cache key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 5533dfee..a445baac 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -30,13 +30,13 @@ jobs: cache: npm - name: Next cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ${{ github.workspace }}/.next/cache key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }} - name: E2E cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ${{ github.workspace }}/e2e/node_modules key: ${{ runner.os }}-e2e-node_modules-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/lighthouse.yml b/.github/workflows/lighthouse.yml index 21b60356..464f537c 100644 --- a/.github/workflows/lighthouse.yml +++ b/.github/workflows/lighthouse.yml @@ -35,7 +35,7 @@ jobs: cache: npm - name: Next cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ${{ github.workspace }}/.next/cache key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}