From 2cf9fc25ac9e17b920aa0f57b2d3725666b1f8c1 Mon Sep 17 00:00:00 2001 From: William Crum Date: Tue, 8 Apr 2025 10:19:47 -0600 Subject: [PATCH] fix: move to sigs.k8s.io/yaml/goyaml.v3 --- internal/encoding/yaml/codec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/encoding/yaml/codec.go b/internal/encoding/yaml/codec.go index b33291e..b52f0b3 100644 --- a/internal/encoding/yaml/codec.go +++ b/internal/encoding/yaml/codec.go @@ -1,6 +1,6 @@ package yaml -import "sigs.k8s.io/yaml" +import yaml "sigs.k8s.io/yaml/goyaml.v3" // Codec implements the encoding.Encoder and encoding.Decoder interfaces for YAML encoding. type Codec struct{}