From 12a9a6f7a9d4adc0f7f4b06b5b9582f3c7ba07fc Mon Sep 17 00:00:00 2001 From: rock Date: Sun, 30 Aug 2026 07:34:20 -0700 Subject: [PATCH] fix: disable actions cache to debug go vet failures --- .gitea/workflows/ci.yaml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 31d8267..da8704c 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -29,15 +29,16 @@ jobs: run: | 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: | - ~/.cache/go-build - ~/go/pkg/mod - key: go-${{ runner.os }}-${{ hashFiles('go.sum') }} - restore-keys: | - go-${{ runner.os }}- + # Cache disabled due to go vet failures + # - name: cache go modules + build cache + # uses: actions/cache@v4 + # with: + # path: | + # ~/.cache/go-build + # ~/go/pkg/mod + # key: go-${{ runner.os }}-${{ hashFiles('go.sum') }} + # restore-keys: | + # go-${{ runner.os }}- - name: gofmt run: |