From 4eb8eaeceebe2e6ff2c897738f28580b0dbfb5b9 Mon Sep 17 00:00:00 2001 From: James Sheppard Date: Sun, 7 May 2023 17:06:08 +0000 Subject: [PATCH] use errors pkg for errors.New call in values.go Signed-off-by: James Sheppard --- pkg/chartutil/values.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/chartutil/values.go b/pkg/chartutil/values.go index 2fa2bdabb..f41e0cc5c 100644 --- a/pkg/chartutil/values.go +++ b/pkg/chartutil/values.go @@ -17,12 +17,12 @@ limitations under the License. package chartutil import ( + "errors" "fmt" "io" "os" "strings" - "github.com/pkg/errors" "sigs.k8s.io/yaml" "helm.sh/helm/v3/pkg/chart"