Replace go version in go.mod file to `go 1.21` instead of `go 1.21.1`
Yashk767 opened this issue · 0 comments
Yashk767 commented
Description
The top go version line declared in go.mod file is a required minimum version of Go to use with the module, so every major project uses a major release not a patch revised release.
Similarly go 1.21
is a major release and go 1.21.1
is a revised patch release for the major release. Based on the above line, we need change the go version in go.mod file to go 1.21