Skip to content

Commit 7cf30e7

Browse files
build(deps): bump golang.org/x/tools from 0.9.3 to 0.10.0 (#3914)
Co-authored-by: Romanos Skiadas <[email protected]>
1 parent 6c7aba6 commit 7cf30e7

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

.golangci.reference.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1039,6 +1039,7 @@ linters-settings:
10391039
- composites
10401040
- copylocks
10411041
- deepequalerrors
1042+
- defers
10421043
- errorsas
10431044
- fieldalignment
10441045
- findcall

go.mod

+4-4
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ require (
117117
gitlab.com/bosi/decorder v0.2.3
118118
go.tmz.dev/musttag v0.7.0
119119
golang.org/x/exp v0.0.0-20230510235704-dd950f8aeaea
120-
golang.org/x/tools v0.9.3
120+
golang.org/x/tools v0.10.0
121121
gopkg.in/yaml.v3 v3.0.1
122122
honnef.co/go/tools v0.4.3
123123
mvdan.cc/gofumpt v0.5.0
@@ -185,9 +185,9 @@ require (
185185
go.uber.org/multierr v1.6.0 // indirect
186186
go.uber.org/zap v1.24.0 // indirect
187187
golang.org/x/exp/typeparams v0.0.0-20230224173230-c95f2b4c22f2 // indirect
188-
golang.org/x/mod v0.10.0 // indirect
189-
golang.org/x/sync v0.2.0 // indirect
190-
golang.org/x/sys v0.8.0 // indirect
188+
golang.org/x/mod v0.11.0 // indirect
189+
golang.org/x/sync v0.3.0 // indirect
190+
golang.org/x/sys v0.9.0 // indirect
191191
golang.org/x/text v0.9.0 // indirect
192192
google.golang.org/protobuf v1.28.0 // indirect
193193
gopkg.in/ini.v1 v1.67.0 // indirect

go.sum

+9-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/golinters/govet.go

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import (
1414
"golang.org/x/tools/go/analysis/passes/copylock"
1515
_ "golang.org/x/tools/go/analysis/passes/ctrlflow" // unused, internal analyzer
1616
"golang.org/x/tools/go/analysis/passes/deepequalerrors"
17+
"golang.org/x/tools/go/analysis/passes/defers"
1718
"golang.org/x/tools/go/analysis/passes/errorsas"
1819
"golang.org/x/tools/go/analysis/passes/fieldalignment"
1920
"golang.org/x/tools/go/analysis/passes/findcall"
@@ -60,6 +61,7 @@ var (
6061
composite.Analyzer,
6162
copylock.Analyzer,
6263
deepequalerrors.Analyzer,
64+
defers.Analyzer,
6365
errorsas.Analyzer,
6466
fieldalignment.Analyzer,
6567
findcall.Analyzer,

0 commit comments

Comments
 (0)