From bd646ff4a470448a1b6a822d56a30166392137d3 Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Sun, 17 May 2026 04:50:59 -0700 Subject: [PATCH] fix: use actions/cache@v3 for Gitea v1 cache API actions/cache@v4 uses v2 API which Gitea's cache server doesn't support, causing hangs. @v3 uses v1 protocol compatible with act_runner. --- .gitea/workflows/pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pr.yml b/.gitea/workflows/pr.yml index d1290fc..fae29b4 100644 --- a/.gitea/workflows/pr.yml +++ b/.gitea/workflows/pr.yml @@ -28,7 +28,7 @@ jobs: echo "hash=$(sha256sum package-lock.json | cut -d' ' -f1)" >> $GITHUB_OUTPUT - name: Cache node_modules - uses: actions/cache@v4 + uses: actions/cache@v3 with: path: | node_modules @@ -67,7 +67,7 @@ jobs: echo "hash=$(sha256sum package-lock.json | cut -d' ' -f1)" >> $GITHUB_OUTPUT - name: Cache node_modules - uses: actions/cache@v4 + uses: actions/cache@v3 with: path: | node_modules