From 9b5a7686183fca72142a550ddceb428f4eec90e8 Mon Sep 17 00:00:00 2001 From: 1gtm <1gtm@appscode.com> Date: Tue, 1 Sep 2026 17:50:38 +0000 Subject: [PATCH] Use Go 1.27, k8s 1.37 & debian:13 Signed-off-by: 1gtm <1gtm@appscode.com> --- Makefile | 2 +- pkg/lib.go | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 61eb988..86b9189 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,7 @@ BIN_PLATFORMS := $(DOCKER_PLATFORMS) windows/amd64 darwin/amd64 OS := $(if $(GOOS),$(GOOS),$(shell go env GOOS)) ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH)) -GO_VERSION ?= 1.25 +GO_VERSION ?= 1.27 BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION) OUTBIN = bin/$(BIN)-$(OS)-$(ARCH) diff --git a/pkg/lib.go b/pkg/lib.go index 72ce2b4..3c0c74b 100644 --- a/pkg/lib.go +++ b/pkg/lib.go @@ -157,7 +157,8 @@ func (s statusPrinter) WriteTable(out io.Writer) error { if h.LastRun.StartedAt.IsZero() { continue } - fmt.Fprintf(out, "TEST SUITE: %s\n%s\n%s\n%s\n", + fmt.Fprintf( + out, "TEST SUITE: %s\n%s\n%s\n%s\n", h.Name, fmt.Sprintf("Last Started: %s", h.LastRun.StartedAt.Format(time.ANSIC)), fmt.Sprintf("Last Completed: %s", h.LastRun.CompletedAt.Format(time.ANSIC)),