From 31248eacc034df7dd3896cbdb1e1b531fd3d3ffa Mon Sep 17 00:00:00 2001 From: rock Date: Sun, 30 Aug 2026 07:34:25 -0700 Subject: [PATCH] fix: disable actions cache to debug go vet failures --- .gitea/workflows/ci.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 4578514..5a7c906 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -25,14 +25,14 @@ jobs: git config --global url."https://oauth2:${REGISTRY_PAT}@forgejo.riotpiao.com".insteadOf "https://forgejo.riotpiao.com" - name: cache go modules + build cache - uses: actions/cache@v4 - with: - path: | + # uses: actions/cache@v4 + # with: + # path: | ~/.cache/go-build ~/go/pkg/mod - key: go-${{ runner.os }}-${{ hashFiles('go.sum') }} - restore-keys: | - go-${{ runner.os }}- + # key: # go-${{ runner.os }}-${{ hashFiles('go.sum') }} + # restore-keys: | + # go-${{ runner.os }}- - name: gofmt run: |