diff options
| author | Taras Madan <tarasmadan@google.com> | 2022-09-05 14:27:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-05 12:27:54 +0000 |
| commit | b2f2446b46bf02821d90ebedadae2bf7ae0e880e (patch) | |
| tree | 923cf42842918d6bebca1d6bbdc08abed54d274d /go.mod | |
| parent | e6654faff4bcca4be92e9a8596fd4b77f747c39e (diff) | |
go.mod, vendor: update (#3358)
* go.mod, vendor: remove unnecessary dependencies
Commands:
1. go mod tidy
2. go mod vendor
* go.mod, vendor: update cloud.google.com/go
Commands:
1. go get -u cloud.google.com/go
2. go mod tidy
3. go mod vendor
* go.mod, vendor: update cloud.google.com/*
Commands:
1. go get -u cloud.google.com/storage cloud.google.com/logging
2. go mod tidy
3. go mod vendor
* go.mod, .golangci.yml, vendor: update *lint*
Commands:
1. go get -u golang.org/x/tools github.com/golangci/golangci-lint@v1.47.0
2. go mod tidy
3. go mod vendor
4. edit .golangci.yml to suppress new errors (resolved in the same PR later)
* all: fix lint errors
hash.go: copy() recommended by gosimple
parse.go: ent is never nil
verifier.go: signal.Notify() with unbuffered channel is bad. Have no idea why.
* .golangci.yml: adjust godot rules
check-all is deprecated, but still work
if you're hesitating too - I'll remove this commit
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 66 |
1 files changed, 35 insertions, 31 deletions
@@ -3,42 +3,46 @@ module github.com/google/syzkaller go 1.16 require ( - cloud.google.com/go v0.81.0 - cloud.google.com/go/logging v1.4.2 + cloud.google.com/go v0.104.0 // indirect + cloud.google.com/go/compute v1.9.0 // indirect + cloud.google.com/go/kms v1.4.0 // indirect + cloud.google.com/go/logging v1.5.0 + cloud.google.com/go/profiler v0.3.0 cloud.google.com/go/pubsub v1.7.0 - cloud.google.com/go/storage v1.10.0 + cloud.google.com/go/secretmanager v1.5.0 + cloud.google.com/go/storage v1.26.0 github.com/Djarvur/go-err113 v0.1.0 // indirect + github.com/daixiang0/gci v0.6.3 // indirect github.com/dvyukov/go-fuzz v0.0.0-20201127111758-49e582c6c23d - github.com/golangci/golangci-lint v1.37.1 - github.com/golangci/misspell v0.3.5 // indirect - github.com/google/go-cmp v0.5.5 + github.com/go-critic/go-critic v0.6.4 // indirect + github.com/golangci/golangci-lint v1.47.0 + github.com/golangci/revgrep v0.0.0-20220804021717-745bb2f7c2e6 // indirect + github.com/google/go-cmp v0.5.8 + github.com/googleapis/gax-go/v2 v2.5.1 // indirect github.com/gorilla/handlers v1.5.1 - github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639 - github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af // indirect - github.com/jstemmer/go-junit-report v0.9.2-0.20191008195320-984a47ca6b0a // indirect - github.com/magiconair/properties v1.8.3 // indirect - github.com/matoous/godox v0.0.0-20200801072554-4fb83dc2941e // indirect - github.com/mitchellh/mapstructure v1.3.3 // indirect - github.com/pelletier/go-toml v1.8.1 // indirect - github.com/prometheus/client_golang v0.9.3 + github.com/ianlancetaylor/demangle v0.0.0-20210905161508-09a460cdf81d + github.com/kisielk/errcheck v1.6.2 // indirect + github.com/mattn/go-colorable v0.1.13 // indirect + github.com/mgechev/revive v1.2.3 // indirect + github.com/polyfloyd/go-errorlint v1.0.2 // indirect + github.com/prometheus/client_golang v1.12.1 github.com/quasilyte/regex/syntax v0.0.0-20200805063351-8f842688393c // indirect - github.com/spf13/afero v1.4.0 // indirect - github.com/spf13/cast v1.3.1 // indirect - github.com/spf13/jwalterweatherman v1.1.0 // indirect - github.com/stretchr/objx v0.3.0 // indirect - github.com/stretchr/testify v1.7.0 // indirect - github.com/tdakkota/asciicheck v0.0.0-20200416200610-e657995f937b // indirect - github.com/timakin/bodyclose v0.0.0-20200424151742-cb6215831a94 // indirect - github.com/ulikunitz/xz v0.5.10 // indirect - golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420 - golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c + github.com/ryancurrah/gomodguard v1.2.4 // indirect + github.com/securego/gosec/v2 v2.13.1 // indirect + github.com/sirupsen/logrus v1.9.0 // indirect + github.com/stretchr/testify v1.8.0 + github.com/ulikunitz/xz v0.5.10 + golang.org/x/net v0.0.0-20220826154423-83b083e8dc8b + golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094 golang.org/x/perf v0.0.0-20211012211434-03971e389cd3 - golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect - golang.org/x/sys v0.0.0-20210503080704-8803ae5d1324 - golang.org/x/tools v0.1.0 - google.golang.org/api v0.46.0 + golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde + golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 + golang.org/x/tools v0.1.12 + google.golang.org/api v0.94.0 google.golang.org/appengine/v2 v2.0.1 - google.golang.org/genproto v0.0.0-20210517163617-5e0236093d7a - gopkg.in/ini.v1 v1.61.0 // indirect - gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 + google.golang.org/genproto v0.0.0-20220902135211-223410557253 + google.golang.org/grpc v1.49.0 // indirect + gopkg.in/yaml.v3 v3.0.1 + honnef.co/go/tools v0.3.3 // indirect + mvdan.cc/unparam v0.0.0-20220706161116-678bad134442 // indirect ) |
