From dc6d7813743efe97e204e367a803439622a0534b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Gonz=C3=A1lez=20Serrano?= Date: Sun, 2 Feb 2025 22:07:37 +0100 Subject: [PATCH] Fix modulepath (#575) If the module is released at major version 2 or higher, the module path must end with a major version suffix like /v2. This may or may not be part of the subdirectory name See https://go.dev/ref/mod#module-path --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 03b9e89..3912b25 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/komodorio/helm-dashboard +module github.com/komodorio/helm-dashboard/v2 go 1.22