From 3095237e16bbaaa6f2ef862fa028e7a7c8a2f39d Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 25 Jun 2023 02:36:00 -0400 Subject: [PATCH] debug: fix git ref --- .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 b035623..1d58d9b 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: LumeWeb/github-action-cache/save@v3 + uses: LumeWeb/github-action-cache/save@main 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: LumeWeb/github-action-cache/restore@v3 + - uses: LumeWeb/github-action-cache/restore@main with: path: . key: cache-${{ github.run_id }}-${{ github.run_attempt }}