-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update build, dependencies, Go and tool versions
* Use current CircleCI build image for Golang * Update tools in Docker image * Add image labels for installed tool versions * Update labels from deprecated label schema to OCI spec * Configure build tools in go.mod/tools.go * Improve Go linting Signed-off-by: Reinhard Naegele <[email protected]>
- Loading branch information
1 parent
d961652
commit 829eb73
Showing
12 changed files
with
556 additions
and
83 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,27 @@ | ||
module github.com/helm/chart-testing/v3 | ||
|
||
go 1.13 | ||
go 1.14 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/MakeNowJust/heredoc v0.0.0-20171113091838-e9091a26100e | ||
github.com/Masterminds/semver v1.4.2 | ||
github.com/cpuguy83/go-md2man v1.0.8 // indirect | ||
github.com/MakeNowJust/heredoc v1.0.0 | ||
github.com/Masterminds/semver v1.5.0 | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/goreleaser/goreleaser v0.129.0 | ||
github.com/hashicorp/go-multierror v1.0.0 | ||
github.com/hashicorp/go-retryablehttp v0.5.2 | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/mitchellh/go-homedir v1.0.0 | ||
github.com/mitchellh/mapstructure v1.1.2 // indirect | ||
github.com/pkg/errors v0.8.0 | ||
github.com/russross/blackfriday v1.5.2 // indirect | ||
github.com/spf13/cast v1.3.0 // indirect | ||
github.com/spf13/cobra v0.0.3 | ||
github.com/spf13/pflag v1.0.3 | ||
github.com/spf13/viper v1.2.1 | ||
github.com/stretchr/objx v0.1.1 // indirect | ||
github.com/stretchr/testify v1.4.0 | ||
golang.org/x/sys v0.0.0-20190422165155-953cdadca894 // indirect | ||
gopkg.in/yaml.v2 v2.2.2 | ||
github.com/hashicorp/go-retryablehttp v0.6.4 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/mitchellh/mapstructure v1.2.2 // indirect | ||
github.com/pelletier/go-toml v1.6.0 // indirect | ||
github.com/pkg/errors v0.9.1 | ||
github.com/spf13/afero v1.2.2 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/cobra v0.0.7 | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 | ||
github.com/spf13/viper v1.6.2 | ||
github.com/stretchr/testify v1.5.1 | ||
golang.org/x/sys v0.0.0-20200327173247-9dae0f8f5775 // indirect | ||
golang.org/x/tools v0.0.0-20200328031815-3db5fc6bac03 | ||
gopkg.in/ini.v1 v1.55.0 // indirect | ||
gopkg.in/yaml.v2 v2.2.8 | ||
) |
Oops, something went wrong.