-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: update action versions * build: update go version to 1.18 * chore(deps): update dependencies to make build pass on Go 1.18 * ci: update Go to 1.18 * ci: update golangci-lint to make lint pass on Go 1.18 * chore: fix lint violations * ci: drop deprecated golint * build: update Go to 1.19 * chore: fix lint violations Signed-off-by: Mark Sagi-Kazar <[email protected]>
- Loading branch information
1 parent
95ff401
commit 8feeb81
Showing
28 changed files
with
535 additions
and
218 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
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
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 |
---|---|---|
@@ -1,27 +1,43 @@ | ||
module github.com/guumaster/hostctl | ||
|
||
go 1.14 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.4.14 // indirect | ||
github.com/docker/distribution v2.7.1+incompatible // indirect | ||
github.com/docker/docker v17.12.1-ce+incompatible | ||
github.com/docker/docker v20.10.17+incompatible | ||
github.com/guumaster/cligger v0.1.1 | ||
github.com/guumaster/tablewriter v0.0.10 | ||
github.com/spf13/afero v1.9.2 | ||
github.com/spf13/cobra v1.5.0 | ||
github.com/stretchr/testify v1.7.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.5.2 // 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.1+incompatible // indirect | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/gogo/protobuf v1.3.1 // indirect | ||
github.com/guumaster/cligger v0.1.1 | ||
github.com/guumaster/tablewriter v0.0.9 | ||
github.com/mattn/go-runewidth v0.0.9 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/guumaster/logsymbols v0.3.1 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.1 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/mattn/go-runewidth v0.0.13 // indirect | ||
github.com/moby/term v0.0.0-20220808134915-39b0c02b01ae // indirect | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.0.1 // indirect | ||
github.com/opencontainers/image-spec v1.0.2 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/spf13/afero v1.3.2 | ||
github.com/spf13/cobra v1.0.0 | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rivo/uniseg v0.3.4 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stretchr/testify v1.6.1 | ||
golang.org/x/net v0.0.0-20200707034311-ab3426394381 // indirect | ||
golang.org/x/sys v0.0.0-20200720211630-cb9d2d5c5666 // indirect | ||
golang.org/x/text v0.3.3 // indirect | ||
gopkg.in/yaml.v2 v2.3.0 | ||
golang.org/x/net v0.0.0-20220809012201-f428fae20770 // indirect | ||
golang.org/x/sys v0.0.0-20220808155132-1c4a2a72c664 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
gopkg.in/gookit/color.v1 v1.1.6 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect | ||
gotest.tools/v3 v3.3.0 // indirect | ||
) |
Oops, something went wrong.