Todays article is about how to get passed this error. So, I was trying to setup a GitHub workflow (golangci-lint and tests) for a project I am work...
For further actions, you may consider blocking this person and/or reporting abuse
go mod tidyand golangci-lint works in every version? curious what GH action you are using onThis is the GitHub actions I was trying to run. For some reasons, on this line
run: cd src && go get && go mod tidy && go test ./...it returned an maximum go version supported bygo mod tidyand after updating the go version everything works as they should.sh
some of the GH actions look like in older versions, I would recommend updating them then also pls do not mutate the state of go.mod via go get during a CI/CD phase. Anything that runs go test or go build automatically does
go mod downloadif vendor file is not created specifically viago mod vendor, you don't really need to run go get or go mod tidy in any of these casesThanks boss.