Skip to content

Commit 7c4beb2

Browse files
committed
CI: Update gopogh from v0.29.0 to v0.29.0
1 parent f77c6f2 commit 7c4beb2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ html_report: ## Generate HTML report out of the last ran integration test logs.
378378
# install gopogh if not already installed
379379
@if ! command -v gopogh >/dev/null 2>&1; then \
380380
echo "gopogh not found, installing..."; \
381-
GOBIN=$(shell go env GOPATH)/bin go install github.com/medyagh/gopogh/cmd/gopogh@latest; \
381+
GOBIN=$(shell go env GOPATH)/bin go install github.com/medyagh/gopogh/cmd/gopogh@v0.29.0; \
382382
fi
383383
@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}"
384384
@echo "-------------------------- Open HTML Report in Browser: ---------------------------"

hack/legacy_fill_db/filldb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ var existingEnvironments = make(map[string]map[string]struct{})
4646
func main() {
4747
gp, err := exec.LookPath("gopogh")
4848
if err != nil {
49-
log.Fatalf("missing gopogh. Run 'go install github.com/medyagh/gopogh/cmd/gopogh@latest': %v", err)
49+
log.Fatalf("missing gopogh. Run 'go install github.com/medyagh/gopogh/cmd/gopogh@v0.29.0': %v", err)
5050
}
5151
f, err := os.OpenFile("gopogh_filldb_log.txt", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666)
5252
if err != nil {

0 commit comments

Comments
 (0)