ci: Disable Go cache to prevent hanging on Gitea runners
All checks were successful
CI / build (push) Successful in 6s
Release / release (push) Successful in 7s

The actions/setup-go@v5 cache feature tries to upload to GitHub's
cache infrastructure, which doesn't exist on self-hosted Gitea
runners. This causes jobs to hang indefinitely during the post step.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
David H. Friedel Jr. 2026-01-10 05:30:00 -05:00
parent b093af7905
commit 663a52eded
2 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: false
- name: Build
run: go build ./...

View File

@ -14,6 +14,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: false
- name: Build
run: go build ./...