From 405969b7096d86d1f6694180d032f98353359583 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 25 Jun 2023 02:28:23 -0400 Subject: [PATCH] Revert "debug: try to use cache action v2 due to restore bugs" This reverts commit db50ced55cb85ee0f2e101657527ef4e264310e2. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 432d408..f3ab3b4 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/save@v3 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/restore@v3 with: path: . key: cache-${{ github.run_id }}-${{ github.run_attempt }}