fix: disable actions cache to debug go vet failures

This commit is contained in:
2026-08-30 07:34:26 -07:00
parent f2b1a4bbb1
commit cdca9d7a2d
+7 -7
View File
@@ -34,14 +34,14 @@ jobs:
REGISTRY_PAT: ${{ secrets.REGISTRY_PAT }} REGISTRY_PAT: ${{ secrets.REGISTRY_PAT }}
- name: cache go modules + build cache - name: cache go modules + build cache
uses: actions/cache@v4 # uses: actions/cache@v4
with: # with:
path: | # path: |
~/.cache/go-build ~/.cache/go-build
~/go/pkg/mod ~/go/pkg/mod
key: go-${{ runner.os }}-${{ hashFiles('go.sum') }} # key: # go-${{ runner.os }}-${{ hashFiles('go.sum') }}
restore-keys: | # restore-keys: |
go-${{ runner.os }}- # go-${{ runner.os }}-
- name: gofmt - name: gofmt
run: | run: |
@@ -66,6 +66,6 @@ jobs:
- name: upload coverage - name: upload coverage
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: # with:
name: coverage name: coverage
path: coverage.out path: coverage.out