From f018145eed300d94923b9e979a5cb948489a3a26 Mon Sep 17 00:00:00 2001 From: kychen Date: Wed, 10 Jun 2026 12:33:05 +0800 Subject: [PATCH] fix(security): build harbor-cli with Go 1.26.4 Bump the go directive to 1.26.4 so the dagger release build uses golang:1.26.4-alpine, fixing Go stdlib vulnerabilities reported by redline static scan on harbor-connector-automatic-creation:v0.0.18: - CVE-2026-42504 (HIGH) - CVE-2026-27145 (MEDIUM) - CVE-2026-42507 (MEDIUM) --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index da5509a0b..76f1186cc 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/goharbor/harbor-cli -go 1.26.3 +go 1.26.4 require ( github.com/atotto/clipboard v0.1.4