From 4dcd1f943b96e0fb98e980ce71b9489fa367a080 Mon Sep 17 00:00:00 2001 From: josh Date: Sun, 3 May 2026 21:44:12 -0400 Subject: [PATCH] Disable Go module cache in CI to avoid 4m+ timeout Gitea's cache server is unreachable, causing setup-go to block on a failed cache restore. Disable it since the Docker build layer caches dependencies independently. Co-Authored-By: Claude Opus 4.6 --- .gitea/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 25a5441..0500e5a 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -15,6 +15,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: '1.23' + cache: false - name: Run tests run: go test ./... - name: Vet