You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please excuse if this is not the appropriate place to report this issue at. I don't know the exact reason why the problem described in the following occurs. To me it seems the nolintlint evaluator doesn't respect Go build constraints.
The golangci-lint CI action was failing on a file having a Go build constraint of //go:build go1.20` due to `Error: directive `//nolint:gosec // unsafe is used for better performance here` is unused for linter "gosec" (nolintlint).
See the failing job here: https://github.com/gofiber/fiber/actions/runs/4968641325/jobs/8891360463.
The issue was fixed by removing the nolint:gosec directive, although unsafe package was used. See this commit: gofiber/fiber@bcefaac
Run actions/setup-go@v4 with: go-version: 1.[2](https://github.com/gofiber/fiber/actions/runs/4968641325/jobs/8891360463#step:2:2)0.x check-latest: false token: *** cache: trueSetup go version spec 1.20.xFound in cache @ /opt/hostedtoolcache/go/1.20.[4](https://github.com/gofiber/fiber/actions/runs/4968641325/jobs/8891360463#step:2:4)/x[6](https://github.com/gofiber/fiber/actions/runs/4968641325/jobs/8891360463#step:2:6)4Added go to the pathSuccessfully set up Go version 1.20.x/opt/hostedtoolcache/go/1.20.4/x64/bin/go env GOMODCACHE/opt/hostedtoolcache/go/1.20.4/x64/bin/go env GOCACHE/home/runner/go/pkg/mod/home/runner/.cache/go-buildWarning: Restore cache failed: Dependencies file is not found in /home/runner/work/fiber/fiber. Supported file pattern: go.sumgo version go1.20.4 linux/amd64go env GO111MODULE="" GOARCH="amd64" GOBIN="" GOCACHE="/home/runner/.cache/go-build" GOENV="/home/runner/.config/go/env" GOEXE="" GOEXPERIMENT="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOINSECURE="" GOMODCACHE="/home/runner/go/pkg/mod" GONOPROXY="" GONOSUMDB="" GOOS="linux" GOPATH="/home/runner/go" GOPRIVATE="" GOPROXY="https://proxy.golang.org,direct" GOROOT="/opt/hostedtoolcache/go/1.20.4/x64" GOSUMDB="sum.golang.org" GOTMPDIR="" GOTOOLDIR="/opt/hostedtoolcache/go/1.20.4/x64/pkg/tool/linux_amd64" GOVCS="" GOVERSION="go1.20.4" GCCGO="gccgo" GOAMD64="v1" AR="ar" CC="gcc" CXX="g++" CGO_ENABLED="1" GOMOD="/dev/null" GOWORK="" CGO_CFLAGS="-O2 -g" CGO_CPPFLAGS="" CGO_CXXFLAGS="-O2 -g" CGO_FFLAGS="-O2 -g" CGO_LDFLAGS="-O2 -g" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build[19](https://github.com/gofiber/fiber/actions/runs/4968641325/jobs/8891360463#step:2:20)6036[35](https://github.com/gofiber/fiber/actions/runs/4968641325/jobs/8891360463#step:2:36)90=/tmp/go-build -gno-record-gcc-switches"
Verbose output of running
run golangci-lint Running [/home/runner/golangci-lint-1.51.0-linux-amd64/golangci-lint run --out-format=github-actions] in [] ... Error: directive `//nolint:gosec // unsafe is used for better performance here` is unused for linter "gosec" (nolintlint) level=warning msg="[linters_context] rowserrcheck is disabled because of generics. You can track the evolution of the generics support by following the https://github.com/golangci/golangci-lint/issues/2649." level=warning msg="[linters_context] sqlclosecheck is disabled because of generics. You can track the evolution of the generics support by following the https://github.com/golangci/golangci-lint/issues/2649." level=warning msg="[linters_context] wastedassign is disabled because of generics. You can track the evolution of the generics support by following the https://github.com/golangci/golangci-lint/issues/2649." level=error msg="Timeout exceeded: try increasing it by passing --timeout option" Error: golangci-lint exit with code 4 Ran golangci-lint in 71644ms
Welcome
Description of the problem
Please excuse if this is not the appropriate place to report this issue at. I don't know the exact reason why the problem described in the following occurs. To me it seems the
nolintlint
evaluator doesn't respect Go build constraints.I was working on this PR: gofiber/fiber#2462
The golangci-lint CI action was failing on a file having a Go build constraint of
//go:build go1.20` due to `Error: directive `//nolint:gosec // unsafe is used for better performance here` is unused for linter "gosec" (nolintlint)
.See the failing job here: https://github.com/gofiber/fiber/actions/runs/4968641325/jobs/8891360463.
The issue was fixed by removing the
nolint:gosec
directive, althoughunsafe
package was used. See this commit:gofiber/fiber@bcefaac
For another file depending on Go < 1.20, the
nolint
directive however was correctly identified & used: https://github.com/gofiber/fiber/blob/bcefaaca110919a8f9e1a357dd639408b0f0cfac/utils/convert_s2b_old.go#L16Version of golangci-lint
Configuration file
https://github.com/gofiber/fiber/blob/77c1b4868a686254a839fbbb88d7f46cbadb055a/.golangci.yml
Go environment
Verbose output of running
Code example or link to a public repository
gofiber/fiber#2462
The text was updated successfully, but these errors were encountered: