There are some modules are not updated / not updated to latest version.
[I] $ make go-mod-outdated
# https://stackoverflow.com/questions/55866604/whats-the-go-mod-equivalent-of-npm-outdated
# Since go 1.21, this command will exit 2 when one of the dependencies require a go version newer than us.
# This implies we have to use the latest verion of Go whenever possible.
go list -u -m -f '{{if .Update}}{{if not .Indirect}}{{.}}{{end}}{{end}}' all
github.com/cert-manager/cert-manager v1.15.3 [v1.16.1]
github.com/go-webauthn/webauthn v0.8.6 [v0.11.2]
github.com/google/wire v0.5.0 [v0.6.0]
github.com/jmoiron/sqlx v1.3.5 [v1.4.0]
k8s.io/api v0.30.6 [v0.31.2]
k8s.io/apimachinery v0.30.6 [v0.31.2]
k8s.io/client-go v0.30.6 [v0.31.2]
cert-manager: it was updated to 1.15.
webauthn: the update involves breaking changes, which should be done in another PR.
wire: 0.6 generates a different wire_gen.go, which should be done in another PR.
There are some modules are not updated / not updated to latest version.