-
Notifications
You must be signed in to change notification settings - Fork 472
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This updates to go 1.18 as base since some dependencies now only support go 1.18 as latest. Updates all the dependencies. Move to any{} over interface{}{} and updates travis Signed-off-by: R.I.Pienaar <[email protected]> Signed-off-by: R.I.Pienaar <[email protected]>
- Loading branch information
Showing
20 changed files
with
214 additions
and
645 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ env: | |
language: go | ||
|
||
go: | ||
- 1.17.x | ||
- 1.18.x | ||
|
||
os: | ||
- osx | ||
|
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,33 +1,56 @@ | ||
module github.com/goss-org/goss | ||
|
||
go 1.18 | ||
|
||
require ( | ||
github.com/Masterminds/sprig/v3 v3.2.3 | ||
github.com/achanda/go-sysctl v0.0.0-20160222034550-6be7678c45d2 | ||
github.com/blang/semver/v4 v4.0.0 | ||
github.com/cheekybits/genny v1.0.0 | ||
github.com/fatih/color v1.13.0 | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/goss-org/GOnetstat v0.0.0-20220505220511-31d79a98d9f2 | ||
github.com/goss-org/go-ps v0.0.0-20201009164808-61c449472dcf | ||
github.com/huandu/xstrings v1.4.0 // indirect | ||
github.com/imdario/mergo v0.3.13 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/goss-org/GOnetstat v0.0.0-20230101144325-22be0bd9e64d | ||
github.com/goss-org/go-ps v0.0.0-20230101144351-953ade48a71b | ||
github.com/miekg/dns v1.1.50 | ||
github.com/moby/sys/mountinfo v0.6.2 | ||
github.com/oleiade/reflections v1.0.1 | ||
github.com/onsi/ginkgo/v2 v2.1.4 // indirect | ||
github.com/onsi/gomega v1.19.0 | ||
github.com/onsi/gomega v1.24.2 | ||
github.com/patrickmn/go-cache v2.1.0+incompatible | ||
github.com/prometheus/client_golang v1.14.0 | ||
github.com/prometheus/common v0.37.0 | ||
github.com/prometheus/common v0.39.0 | ||
github.com/stretchr/testify v1.8.1 | ||
github.com/urfave/cli v1.22.10 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
require ( | ||
github.com/Masterminds/goutils v1.1.1 // indirect | ||
github.com/Masterminds/semver/v3 v3.2.0 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/huandu/xstrings v1.4.0 // indirect | ||
github.com/imdario/mergo v0.3.13 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/mitchellh/copystructure v1.2.0 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.3.0 // indirect | ||
github.com/prometheus/procfs v0.8.0 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/shopspring/decimal v1.3.1 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | ||
github.com/stretchr/testify v1.7.1 | ||
github.com/urfave/cli v1.22.9 | ||
golang.org/x/crypto v0.4.0 // indirect | ||
golang.org/x/mod v0.7.0 // indirect | ||
golang.org/x/net v0.4.0 // indirect | ||
golang.org/x/sys v0.3.0 // indirect | ||
golang.org/x/text v0.5.0 // indirect | ||
golang.org/x/tools v0.4.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
go 1.16 |
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
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
Oops, something went wrong.