diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04fe8ab8..5ea11aa7 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 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..a1cd98d2 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 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..f6b61926 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 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 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..17808371 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 with: path: ${{ github.workspace }}/.next/cache key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}