diff --git a/Makefile b/Makefile index 434f3fa13135..c34e2afd7acf 100644 --- a/Makefile +++ b/Makefile @@ -378,7 +378,7 @@ html_report: ## Generate HTML report out of the last ran integration test logs. # install gopogh if not already installed @if ! command -v gopogh >/dev/null 2>&1; then \ echo "gopogh not found, installing..."; \ - GOBIN=$(shell go env GOPATH)/bin go install github.com/medyagh/gopogh/cmd/gopogh@latest; \ + GOBIN=$(shell go env GOPATH)/bin go install github.com/medyagh/gopogh/cmd/gopogh@v0.29.0; \ fi @gopogh -in "./out/testout_$(COMMIT_SHORT).json" -out ./out/testout_$(COMMIT_SHORT).html -name "$(shell git rev-parse --abbrev-ref HEAD)" -pr "" -repo github.com/kubernetes/minikube/ -details "${COMMIT_SHORT}" @echo "-------------------------- Open HTML Report in Browser: ---------------------------" diff --git a/hack/legacy_fill_db/filldb.go b/hack/legacy_fill_db/filldb.go index 744025aa640b..d58ce290c4da 100644 --- a/hack/legacy_fill_db/filldb.go +++ b/hack/legacy_fill_db/filldb.go @@ -46,7 +46,7 @@ var existingEnvironments = make(map[string]map[string]struct{}) func main() { gp, err := exec.LookPath("gopogh") if err != nil { - log.Fatalf("missing gopogh. Run 'go install github.com/medyagh/gopogh/cmd/gopogh@latest': %v", err) + log.Fatalf("missing gopogh. Run 'go install github.com/medyagh/gopogh/cmd/gopogh@v0.29.0': %v", err) } f, err := os.OpenFile("gopogh_filldb_log.txt", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666) if err != nil {