Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ require (
golang.org/x/lint v0.0.0-20241112194109-818c5a804067
golang.org/x/oauth2 v0.36.0
google.golang.org/api v0.287.0
gopkg.in/yaml.v3 v3.0.1 // indirect
gopkg.in/yaml.v3 v3.0.1
gotest.tools/gotestsum v1.13.0
k8s.io/api v0.36.2
k8s.io/apimachinery v0.36.2
Expand All @@ -115,7 +115,7 @@ require (
modernc.org/sqlite v1.54.0
)

require gopkg.in/yaml.v2 v2.4.0
require gopkg.in/yaml.v2 v2.4.0 // indirect

require (
cel.dev/expr v0.25.2 // indirect
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"github.com/go-viper/mapstructure/v2"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
"gopkg.in/yaml.v2"
"gopkg.in/yaml.v3"
"k8s.io/apimachinery/pkg/util/json"

"github.com/elastic/cloudbeat/internal/resources/fetching"
Expand Down
Loading