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') }}