aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2022-04-08 16:15:24 -0700
committerJoe Richey <joerichey@google.com>2022-04-08 16:25:01 -0700
commit20ed87d83338d5b86d51b64429fa9d6e8379a771 (patch)
tree91ff76330744d2c82621645fae8ca1ee4d2f3213 /go.mod
parent1f4543a97a862c4caf17eb69e0a21eb2ebb7de18 (diff)
Upgrade honnef.co/go/tools to latest version
The version of 'staticcheck' (part of honnef.co/go/tools) we were pinning is incompatible with Go 1.18, as per https://github.com/dominikh/go-tools/issues/1165. To allow 'make lint' to work with Go 1.18 and later, upgrade honnef.co/go/tools to the latest version. This requires that several other modules be upgraded too.
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod11
1 files changed, 7 insertions, 4 deletions
diff --git a/go.mod b/go.mod
index ff71171..eba0720 100644
--- a/go.mod
+++ b/go.mod
@@ -5,13 +5,16 @@ go 1.16
require (
github.com/client9/misspell v0.3.4
github.com/golang/protobuf v1.2.0
+ github.com/google/renameio v0.1.0 // indirect
+ github.com/kisielk/gotool v1.0.0 // indirect
github.com/pkg/errors v0.8.0
+ github.com/rogpeppe/go-internal v1.3.0 // indirect
github.com/urfave/cli v1.20.0
github.com/wadey/gocovmerge v0.0.0-20160331181800-b5bfa59ec0ad
- golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529
+ golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
golang.org/x/lint v0.0.0-20190930215403-16217165b5de
- golang.org/x/sys v0.0.0-20201119102817-f84b799fce68
+ golang.org/x/sys v0.0.0-20211019181941-9d821ace8654
golang.org/x/term v0.0.0-20210422114643-f5beecf764ed
- golang.org/x/tools v0.0.0-20191025023517-2077df36852e
- honnef.co/go/tools v0.0.1-2019.2.3
+ golang.org/x/tools v0.1.11-0.20220316014157-77aa08bb151a
+ honnef.co/go/tools v0.3.0
)