From 93db384d5db21cadd3862b59b060be69f7634146 Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Fri, 21 Aug 2026 22:51:50 +0000 Subject: [PATCH] Update .gitea/scoped_workflows/static-go.yaml --- .gitea/scoped_workflows/static-go.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/scoped_workflows/static-go.yaml b/.gitea/scoped_workflows/static-go.yaml index f4ae1e1..6f61c78 100644 --- a/.gitea/scoped_workflows/static-go.yaml +++ b/.gitea/scoped_workflows/static-go.yaml @@ -34,17 +34,17 @@ jobs: GOTOOLCHAIN=local go install honnef.co/go/tools/cmd/staticcheck@latest GOTOOLCHAIN=local go install golang.org/x/vuln/cmd/govulncheck@latest - - name: Run Go Vet + - name: Run go vet id: static-go-vet if: always() run: go vet ./... - - name: Run Go Staticcheck + - name: Run staticcheck id: static-go-staticcheck if: always() run: staticcheck ./... - - name: Run Go Vuln Check + - name: Run govulncheck id: static-go-govulncheck if: always() run: govulncheck ./...