From 74c09e95968bc527571636c1015919eb8034a21c Mon Sep 17 00:00:00 2001 From: josh Date: Sat, 18 Apr 2026 02:37:16 -0400 Subject: [PATCH] ci: disable setup-go cache to skip 4m Gitea cache server timeout The action tries to restore from 172.18.0.2:36061 (Gitea's cache server), times out, falls through to a fresh download anyway. Pure waste since the runner already has the toolchain in /opt/hostedtoolcache. Turn cache off. Co-Authored-By: Claude Opus 4.7 --- .gitea/workflows/ci.yml | 2 +- .gitea/workflows/e2e.yml | 2 +- .gitea/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index fc164cc..abf2ac7 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: "1.26.x" - cache: true + cache: false - name: Install templ run: go install github.com/a-h/templ/cmd/templ@v0.3.1001 diff --git a/.gitea/workflows/e2e.yml b/.gitea/workflows/e2e.yml index f084059..8064a3f 100644 --- a/.gitea/workflows/e2e.yml +++ b/.gitea/workflows/e2e.yml @@ -30,7 +30,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: "1.26.x" - cache: true + cache: false - name: Install live-image build dependencies run: | diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 4badd7a..2d54151 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -27,7 +27,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: "1.26.x" - cache: true + cache: false - name: Install live-image build dependencies run: |