diff --git a/go.mod b/go.mod index 6a8ab4a..21d5420 100644 --- a/go.mod +++ b/go.mod @@ -6,35 +6,38 @@ require ( github.com/AlecAivazis/survey/v2 v2.2.9 github.com/BurntSushi/toml v0.3.1 github.com/MakeNowJust/heredoc/v2 v2.0.1 - github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect github.com/daixiang0/gci v0.2.8 - github.com/davecgh/go-spew v1.1.1 // indirect github.com/fatih/color v1.9.0 github.com/fujiwara/shapeio v1.0.0 github.com/gocarina/gocsv v0.0.0-20210408192840-02d7211d929d github.com/gogo/protobuf v1.3.2 github.com/golang/mock v1.5.0 github.com/google/go-jsonnet v0.17.0 + github.com/mattn/go-isatty v0.0.13 + github.com/olekukonko/tablewriter v0.0.5 + github.com/stretchr/testify v1.7.0 + github.com/urfave/cli v1.22.5 + go.etcd.io/bbolt v1.3.6 + golang.org/x/text v0.3.3 + golang.org/x/tools v0.1.0 + gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c + honnef.co/go/tools v0.2.0 +) + +require ( + github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect + github.com/davecgh/go-spew v1.1.1 // indirect github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect github.com/mattn/go-colorable v0.1.4 // indirect - github.com/mattn/go-isatty v0.0.13 github.com/mattn/go-runewidth v0.0.9 // indirect github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect - github.com/olekukonko/tablewriter v0.0.5 github.com/pmezard/go-difflib v1.0.0 // indirect github.com/russross/blackfriday/v2 v2.0.1 // indirect github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect github.com/stretchr/objx v0.1.0 // indirect - github.com/stretchr/testify v1.7.0 - github.com/urfave/cli v1.22.5 - go.etcd.io/bbolt v1.3.6 golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect golang.org/x/mod v0.3.0 // indirect golang.org/x/sys v0.0.0-20210831042530-f4d43177bf5e // indirect - golang.org/x/text v0.3.3 golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect - golang.org/x/tools v0.1.0 golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect - gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c - honnef.co/go/tools v0.2.0 ) diff --git a/scripts/ci/install-go.sh b/scripts/ci/install-go.sh index ea6cc11..aa2a31b 100755 --- a/scripts/ci/install-go.sh +++ b/scripts/ci/install-go.sh @@ -1,22 +1,22 @@ #!/usr/bin/env bash set -eo pipefail -declare -r GO_VERSION=1.17.1 +declare -r GO_VERSION=1.17.2 # Hashes are from the table at https://golang.org/dl/ function go_hash () { case $1 in linux_amd64) - echo dab7d9c34361dc21ec237d584590d72500652e7c909bf082758fb63064fca0ef + echo f242a9db6a0ad1846de7b6d94d507915d14062660616a61ef7c808a76e4f1676 ;; linux_arm64) - echo 53b29236fa03ed862670a5e5e2ab2439a2dc288fe61544aa392062104ac0128c + echo a5a43c9cdabdb9f371d56951b14290eba8ce2f9b0db48fb5fc657943984fd4fc ;; mac) - echo 3c452046b1dfa27b70d3217c9fe6de266f9fd74d83aad81382fead70efcdffca + echo 7914497a302a132a465d33f5ee044ce05568bacdb390ab805cb75a3435a23f94 ;; windows) - echo 2f2d0a5d7c59fb38fcacaf1e272cf701bb8c050300ba8b609fc30d2c5800f02e + echo fa6da0b829a66f5fab7e4e312fd6aa1b2d8f045c7ecee83b3d00f6fe5306759a ;; esac }