Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
chore: sync dependencies related to cobra
  • Loading branch information
ldez committed Dec 7, 2025
commit f123ca3e61da2106693bad9b11ea1797ef83c67e
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,11 @@ require (
go.augendre.info/arangolint v0.3.1
go.augendre.info/fatcontext v0.9.0
go.uber.org/automaxprocs v1.6.0
go.yaml.in/yaml/v3 v3.0.4
golang.org/x/mod v0.30.0
golang.org/x/sync v0.18.0
golang.org/x/sys v0.38.0
golang.org/x/tools v0.39.0
gopkg.in/yaml.v3 v3.0.1
honnef.co/go/tools v0.6.1
mvdan.cc/gofumpt v0.9.2
mvdan.cc/unparam v0.0.0-20251027182757-5beb8c8f8f15
Expand Down Expand Up @@ -224,4 +224,5 @@ require (
google.golang.org/protobuf v1.36.8 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
2 changes: 1 addition & 1 deletion pkg/commands/config_verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/santhosh-tekuri/jsonschema/v6"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"

"github.com/golangci/golangci-lint/v2/pkg/exitcodes"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/internal/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"path/filepath"
"strings"

"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

const base = ".custom-gcl"
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/internal/migrate/parser/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"

"github.com/pelletier/go-toml/v2"
"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

type File interface {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package versionone
import (
"encoding"

"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"

"github.com/golangci/golangci-lint/v2/pkg/commands/internal/migrate/ptr"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import (
"github.com/spf13/pflag"
"github.com/spf13/viper"
"go.uber.org/automaxprocs/maxprocs"
"go.yaml.in/yaml/v3"
"golang.org/x/mod/sumdb/dirhash"
"gopkg.in/yaml.v3"

"github.com/golangci/golangci-lint/v2/internal/cache"
"github.com/golangci/golangci-lint/v2/pkg/config"
Expand Down
2 changes: 1 addition & 1 deletion pkg/goformatters/gci/internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"sort"
"strings"

"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"

"github.com/daixiang0/gci/pkg/config"
"github.com/daixiang0/gci/pkg/section"
Expand Down
2 changes: 1 addition & 1 deletion pkg/golinters/forbidigo/forbidigo.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"

"github.com/ashanbrown/forbidigo/v2/forbidigo"
"go.yaml.in/yaml/v3"
"golang.org/x/tools/go/analysis"
"gopkg.in/yaml.v3"

"github.com/golangci/golangci-lint/v2/pkg/config"
"github.com/golangci/golangci-lint/v2/pkg/goanalysis"
Expand Down
2 changes: 1 addition & 1 deletion pkg/lint/linter/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"bytes"
"fmt"

"go.yaml.in/yaml/v3"
"golang.org/x/tools/go/packages"
"gopkg.in/yaml.v3"

"github.com/golangci/golangci-lint/v2/pkg/config"
)
Expand Down
2 changes: 1 addition & 1 deletion scripts/website/expand_templates/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"reflect"
"strings"

"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"

"github.com/golangci/golangci-lint/v2/pkg/config"
"github.com/golangci/golangci-lint/v2/scripts/website/types"
Expand Down
2 changes: 1 addition & 1 deletion test/configuration_file_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

"github.com/santhosh-tekuri/jsonschema/v6"
"github.com/stretchr/testify/require"
"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

func Test_validateTestConfigurationFiles(t *testing.T) {
Expand Down
Loading