diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 432d408..8065b26 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,7 +17,7 @@ jobs: - run: npm run build --if-present - name: Cache build id: cache - uses: actions/cache/save@v2 + uses: actions/cache@v2 with: # npm cache files are stored in `~/.npm` on Linux/macOS path: ./ @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest needs: build steps: - - uses: actions/cache/restore@v2 + - uses: actions/cache@v2 with: path: . key: cache-${{ github.run_id }}-${{ github.run_attempt }}