From a8de6793ae17c87705f753d23d7f77665d5349c6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 00:16:54 +0000 Subject: [PATCH] fix(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 | 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..0f4545bc 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.11 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 97808ac9..18341c88 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.11 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..9bcc9170 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.11 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.11 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..2e4adad1 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.11 with: path: ${{ github.workspace }}/.next/cache key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}