containerd / project-checks

This cross-project repository holds utilities, scripts, and common files used across the containerd master project and many sub-projects within the containerd organization
Apache License 2.0
5 stars 10 forks source link

replace `go get` with `go install` #7

Closed samuelkarp closed 2 years ago

samuelkarp commented 2 years ago

The latest version of golang.org/x/sys requires Go 1.17 and cannot be compiled with older versions of Go. github.com/vbatts/git-validation imports golang.org/x/sys and specifies a compatible version of golang.org/x/sys in its go.mod, but using go get -u overrides the version. Use go install instead, which will respect the version specified in git-validation's go.mod.

See also https://github.com/vbatts/git-validation/issues/56 and https://github.com/opencontainers/distribution-spec/issues/343.

samuelkarp commented 2 years ago

I've tagged this as v1.1.0.