Skip to content

Commit ee37ef3

Browse files
build(deps): bump golang.org/x/tools from 0.22.0 to 0.23.0 (#4868)
Co-authored-by: Fernandez Ludovic <[email protected]>
1 parent 283a9e7 commit ee37ef3

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Diff for: go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ require (
125125
go-simpler.org/sloglint v0.7.2
126126
go.uber.org/automaxprocs v1.5.3
127127
golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc
128-
golang.org/x/tools v0.22.0
128+
golang.org/x/tools v0.23.0
129129
gopkg.in/yaml.v3 v3.0.1
130130
honnef.co/go/tools v0.4.7
131131
mvdan.cc/gofumpt v0.6.0
@@ -189,9 +189,9 @@ require (
189189
go.uber.org/multierr v1.6.0 // indirect
190190
go.uber.org/zap v1.24.0 // indirect
191191
golang.org/x/exp/typeparams v0.0.0-20240314144324-c7f7c6466f7f // indirect
192-
golang.org/x/mod v0.18.0 // indirect
192+
golang.org/x/mod v0.19.0 // indirect
193193
golang.org/x/sync v0.7.0 // indirect
194-
golang.org/x/sys v0.21.0 // indirect
194+
golang.org/x/sys v0.22.0 // indirect
195195
golang.org/x/text v0.15.0 // indirect
196196
google.golang.org/protobuf v1.33.0 // indirect
197197
gopkg.in/ini.v1 v1.67.0 // indirect

Diff for: go.sum

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

Diff for: pkg/golinters/govet/testdata/govet.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ func GovetPrintf() {
3939

4040
func GovetStringIntConv() {
4141
i := 42
42-
fmt.Println("i = " + string(i)) // want "stringintconv: conversion from int to string yields a string of one rune, not a string of digits \\(did you mean fmt.Sprint\\(x\\)\\?\\)"
42+
fmt.Println("i = " + string(i)) // want "stringintconv: conversion from int to string yields a string of one rune, not a string of digits"
4343
}

0 commit comments

Comments
 (0)