build(deps): bump github.com/spf13/cobra from 1.10.1 to 1.10.2 (#6240) · golangci/golangci-lint@031b108 (original) (raw)

File tree

12 files changed

lines changed

12 files changed

lines changed

Original file line number Diff line number Diff line change
@@ -110,7 +110,7 @@ require (
110 110 github.com/sivchari/containedctx v1.0.3
111 111 github.com/sonatard/noctx v0.4.0
112 112 github.com/sourcegraph/go-diff v0.7.0
113 -github.com/spf13/cobra v1.10.1
113 +github.com/spf13/cobra v1.10.2
114 114 github.com/spf13/pflag v1.0.10
115 115 github.com/spf13/viper v1.12.0
116 116 github.com/ssgreg/nlreturn/v2 v2.2.1
@@ -136,11 +136,11 @@ require (
136 136 go.augendre.info/arangolint v0.3.1
137 137 go.augendre.info/fatcontext v0.9.0
138 138 go.uber.org/automaxprocs v1.6.0
139 +go.yaml.in/yaml/v3 v3.0.4
139 140 golang.org/x/mod v0.30.0
140 141 golang.org/x/sync v0.18.0
141 142 golang.org/x/sys v0.38.0
142 143 golang.org/x/tools v0.39.0
143 -gopkg.in/yaml.v3 v3.0.1
144 144 honnef.co/go/tools v0.6.1
145 145 mvdan.cc/gofumpt v0.9.2
146 146 mvdan.cc/unparam v0.0.0-20251027182757-5beb8c8f8f15
@@ -224,4 +224,5 @@ require (
224 224 google.golang.org/protobuf v1.36.8 // indirect
225 225 gopkg.in/ini.v1 v1.67.0 // indirect
226 226 gopkg.in/yaml.v2 v2.4.0 // indirect
227 +gopkg.in/yaml.v3 v3.0.1 // indirect
227 228 )
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ import (
17 17 "github.com/santhosh-tekuri/jsonschema/v6"
18 18 "github.com/spf13/cobra"
19 19 "github.com/spf13/pflag"
20 -"gopkg.in/yaml.v3"
20 +"go.yaml.in/yaml/v3"
21 21
22 22 "github.com/golangci/golangci-lint/v2/pkg/exitcodes"
23 23 )
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ import (
7 7 "path/filepath"
8 8 "strings"
9 9
10 -"gopkg.in/yaml.v3"
10 +"go.yaml.in/yaml/v3"
11 11 )
12 12
13 13 const base = ".custom-gcl"
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ import (
10 10 "strings"
11 11
12 12 "github.com/pelletier/go-toml/v2"
13 -"gopkg.in/yaml.v3"
13 +"go.yaml.in/yaml/v3"
14 14 )
15 15
16 16 type File interface {
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ package versionone
3 3 import (
4 4 "encoding"
5 5
6 -"gopkg.in/yaml.v3"
6 +"go.yaml.in/yaml/v3"
7 7
8 8 "github.com/golangci/golangci-lint/v2/pkg/commands/internal/migrate/ptr"
9 9 )
Original file line number Diff line number Diff line change
@@ -26,8 +26,8 @@ import (
26 26 "github.com/spf13/pflag"
27 27 "github.com/spf13/viper"
28 28 "go.uber.org/automaxprocs/maxprocs"
29 +"go.yaml.in/yaml/v3"
29 30 "golang.org/x/mod/sumdb/dirhash"
30 -"gopkg.in/yaml.v3"
31 31
32 32 "github.com/golangci/golangci-lint/v2/internal/cache"
33 33 "github.com/golangci/golangci-lint/v2/pkg/config"
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ import (
4 4 "sort"
5 5 "strings"
6 6
7 -"gopkg.in/yaml.v3"
7 +"go.yaml.in/yaml/v3"
8 8
9 9 "github.com/daixiang0/gci/pkg/config"
10 10 "github.com/daixiang0/gci/pkg/section"
Original file line number Diff line number Diff line change
@@ -4,8 +4,8 @@ import (
4 4 "fmt"
5 5
6 6 "github.com/ashanbrown/forbidigo/v2/forbidigo"
7 +"go.yaml.in/yaml/v3"
7 8 "golang.org/x/tools/go/analysis"
8 -"gopkg.in/yaml.v3"
9 9
10 10 "github.com/golangci/golangci-lint/v2/pkg/config"
11 11 "github.com/golangci/golangci-lint/v2/pkg/goanalysis"
Original file line number Diff line number Diff line change
@@ -4,8 +4,8 @@ import (
4 4 "bytes"
5 5 "fmt"
6 6
7 +"go.yaml.in/yaml/v3"
7 8 "golang.org/x/tools/go/packages"
8 -"gopkg.in/yaml.v3"
9 9
10 10 "github.com/golangci/golangci-lint/v2/pkg/config"
11 11 )