Skip to content

Commit 52ecb0c

Browse files
committed
chore: migrate gopkg.in.yaml.v3 dependency to go.yaml.in/yaml/v3
Signed-off-by: Chiman Jain <chimanjain15@gmail.com>
1 parent 4d7d831 commit 52ecb0c

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

pkg/lib/bundle/chartutil.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"path/filepath"
2424

2525
"github.com/pkg/errors"
26-
"gopkg.in/yaml.v3"
26+
"go.yaml.in/yaml/v3"
2727
)
2828

2929
// Maintainer describes a Chart maintainer.

pkg/lib/bundle/generate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"strings"
1010

1111
log "github.com/sirupsen/logrus"
12-
"gopkg.in/yaml.v3"
12+
"go.yaml.in/yaml/v3"
1313
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
1414
utilerrors "k8s.io/apimachinery/pkg/util/errors"
1515
k8syaml "k8s.io/apimachinery/pkg/util/yaml"

pkg/lib/bundle/generate_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"testing"
88

99
"github.com/stretchr/testify/require"
10-
"gopkg.in/yaml.v3"
10+
"go.yaml.in/yaml/v3"
1111
)
1212

1313
func TestGetMediaType(t *testing.T) {

pkg/lib/bundle/utils_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"os"
55
"path/filepath"
66

7-
"gopkg.in/yaml.v3"
7+
"go.yaml.in/yaml/v3"
88
)
99

1010
const (

pkg/lib/indexer/indexer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"sync"
1414

1515
"github.com/sirupsen/logrus"
16-
"gopkg.in/yaml.v3"
16+
"go.yaml.in/yaml/v3"
1717
utilerrors "k8s.io/apimachinery/pkg/util/errors"
1818

1919
"github.com/operator-framework/operator-registry/pkg/containertools"

pkg/sqlite/directory_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/otiai10/copy"
1010
"github.com/sirupsen/logrus"
1111
"github.com/stretchr/testify/require"
12-
"gopkg.in/yaml.v3"
12+
"go.yaml.in/yaml/v3"
1313

1414
"github.com/operator-framework/operator-registry/pkg/api"
1515
"github.com/operator-framework/operator-registry/pkg/registry"

0 commit comments

Comments
 (0)