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
fix: stop referencing non existing git references in go.mod (#1332)
Go projects that reference github.com/openshift/cluster-node-tuning-operator
as a library cannot use it because parts of the Go tooling
fail due to go.mod containing references to git tags that do not exist.
This causes errors in Go tooling like for example when running
"go list -m -json all" where it ends up failing indicating that
the non existing revisions do not exist. This errors occur
even when the dependencies have a corresponding replace statement
replacing to an existing reference.
This commit updates the go.mod to remove any dependencies references
to non existing git tags. Specifically, the non existing references
have been updating pointing to the same existing references as the
ones specified in their corresponding replace statement in the
go.mod file.
0 commit comments