The project's tags contain only major and minor parts (no patch part), rendering them SemVer-incompatible. As a result, Go tooling does not recognize those versions.
> go install github.com/visma-prodsec/confused/main@v0.5
go: github.com/visma-prodsec/confused/main@v0.5: no matching versions for query "v0.5"
This can also be seen on https://pkg.go.dev/github.com/visma-prodsec/confused?tab=versions
Looking at the guide, the solution is to recreate tags to contain all three parts, eg. v0.5.0, and use all parts for future tags.
The project's tags contain only major and minor parts (no patch part), rendering them SemVer-incompatible. As a result, Go tooling does not recognize those versions.
This can also be seen on https://pkg.go.dev/github.com/visma-prodsec/confused?tab=versions
Looking at the guide, the solution is to recreate tags to contain all three parts, eg.
v0.5.0, and use all parts for future tags.