From f35cb608888e7cc12b09c6e9fb492b2492607734 Mon Sep 17 00:00:00 2001 From: Chris Bandy Date: Wed, 27 Aug 2025 08:36:14 -0500 Subject: [PATCH] Continue to recommend sigs.k8s.io/yaml The "go.yaml.in/yaml" modules are maintained, but Kubernetes is our top priority. Also, KYAML: https://kep.k8s.io/5295 --- .golangci.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.golangci.yaml b/.golangci.yaml index 76d7d2fa1..7f2b706d5 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -116,6 +116,8 @@ linters: gomodguard: blocked: modules: + - go.yaml.in/yaml/v2: { recommendations: [sigs.k8s.io/yaml] } + - go.yaml.in/yaml/v3: { recommendations: [sigs.k8s.io/yaml] } - gopkg.in/yaml.v2: { recommendations: [sigs.k8s.io/yaml] } - gopkg.in/yaml.v3: { recommendations: [sigs.k8s.io/yaml] } - gotest.tools: { recommendations: [gotest.tools/v3] }