-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump Go and Linter version; update vulnarable packages
- Loading branch information
1 parent
eeedb55
commit 24de336
Showing
12 changed files
with
687 additions
and
338 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,7 +67,7 @@ release: clean ; $(info $(M) building binaries for multiple os/arch...) @ ## Bui | |
setup-tools: setup-lint setup-gocov setup-gocov-xml setup-go-junit-report | ||
|
||
setup-lint: | ||
$(GO) install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.50.1 | ||
$(GO) install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.54.2 | ||
setup-gocov: | ||
$(GO) install github.com/axw/gocov/[email protected] | ||
setup-gocov-xml: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,42 @@ | ||
module github.com/alexei-led/pumba | ||
|
||
require ( | ||
github.com/docker/docker v20.10.10+incompatible | ||
github.com/docker/docker v23.0.3+incompatible | ||
github.com/docker/go-connections v0.4.0 | ||
github.com/johntdyer/slackrus v0.0.0-20210521205746-42486fb4c48c | ||
github.com/opencontainers/image-spec v1.0.2 | ||
github.com/opencontainers/image-spec v1.1.0-rc4 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/sirupsen/logrus v1.9.0 | ||
github.com/stretchr/testify v1.8.1 | ||
github.com/urfave/cli v1.22.10 | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/urfave/cli v1.22.12 | ||
golang.org/x/sync v0.3.0 | ||
) | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.5.2 // indirect | ||
github.com/containerd/containerd v1.5.16 // indirect | ||
github.com/Microsoft/go-winio v0.6.1 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/docker/distribution v2.8.0+incompatible // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/docker/distribution v2.8.1+incompatible // indirect | ||
github.com/docker/go-units v0.5.0 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.0 // indirect | ||
github.com/gorilla/mux v1.8.0 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/johntdyer/slack-go v0.0.0-20180213144715-95fac1160b22 // indirect | ||
github.com/kr/pretty v0.2.1 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/stretchr/objx v0.5.0 // indirect | ||
golang.org/x/net v0.0.0-20211111083644-e5c967477495 // indirect | ||
golang.org/x/sys v0.4.0 // indirect | ||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect | ||
google.golang.org/genproto v0.0.0-20201110150050-8816d57aaa9a // indirect | ||
google.golang.org/grpc v1.33.2 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect | ||
golang.org/x/mod v0.12.0 // indirect | ||
golang.org/x/net v0.15.0 // indirect | ||
golang.org/x/sys v0.12.0 // indirect | ||
golang.org/x/time v0.1.0 // indirect | ||
golang.org/x/tools v0.13.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
gotest.tools/v3 v3.0.2 // indirect | ||
) | ||
|
||
go 1.19 | ||
go 1.21 |
Oops, something went wrong.