diff --git a/cmd/oidc-token-ferry/version/cmd.go b/cmd/oidc-token-ferry/version/cmd.go index ddebd32..e7ed106 100644 --- a/cmd/oidc-token-ferry/version/cmd.go +++ b/cmd/oidc-token-ferry/version/cmd.go @@ -15,10 +15,11 @@ type Version struct { func NewVersion() Version { return Version{ - Version: VERSION, - GoVersion: runtime.Compiler, - GoOs: runtime.GOOS, - GoArch: runtime.GOARCH, + Version: VERSION, + GoVersion: runtime.Version(), + GoCompiler: runtime.Compiler, + GoOs: runtime.GOOS, + GoArch: runtime.GOARCH, } }