Skip to content

Commit e8cfc95

Browse files
committed
Update GoReleaser
Signed-off-by: Reinhard Nägele <[email protected]>
1 parent ba5aed2 commit e8cfc95

File tree

5 files changed

+652
-184
lines changed

5 files changed

+652
-184
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup go
2323
uses: actions/setup-go@v2
2424
with:
25-
go-version: 1.14
25+
go-version: 1.16
2626

2727
- uses: azure/setup-helm@v1
2828
with:

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup go
2323
uses: actions/setup-go@v2
2424
with:
25-
go-version: 1.14
25+
go-version: 1.16
2626

2727
- name: Install tools
2828
run: |

.goreleaser.yml

-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ snapshot:
3636
dockers:
3737
- goos: linux
3838
goarch: amd64
39-
binaries:
40-
- ct
4139
skip_push: false
4240
dockerfile: Dockerfile
4341
image_templates:

go.mod

+8-16
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,20 @@
11
module github.com/helm/chart-testing/v3
22

3-
go 1.14
3+
go 1.16
44

55
require (
66
github.com/MakeNowJust/heredoc v1.0.0
77
github.com/Masterminds/semver v1.5.0
8-
github.com/fsnotify/fsnotify v1.4.9 // indirect
9-
github.com/goreleaser/goreleaser v0.129.0
8+
github.com/goreleaser/goreleaser v0.164.0
109
github.com/hashicorp/go-multierror v1.0.0
11-
github.com/hashicorp/go-retryablehttp v0.6.4
10+
github.com/hashicorp/go-retryablehttp v0.6.8
1211
github.com/mattn/go-shellwords v1.0.10
1312
github.com/mitchellh/go-homedir v1.1.0
14-
github.com/mitchellh/mapstructure v1.2.2 // indirect
15-
github.com/pelletier/go-toml v1.6.0 // indirect
1613
github.com/pkg/errors v0.9.1
17-
github.com/spf13/afero v1.2.2 // indirect
18-
github.com/spf13/cast v1.3.1 // indirect
19-
github.com/spf13/cobra v0.0.7
20-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
14+
github.com/spf13/cobra v1.1.3
2115
github.com/spf13/pflag v1.0.5
22-
github.com/spf13/viper v1.6.2
23-
github.com/stretchr/testify v1.5.1
24-
golang.org/x/sys v0.0.0-20200327173247-9dae0f8f5775 // indirect
25-
golang.org/x/tools v0.0.0-20200328031815-3db5fc6bac03
26-
gopkg.in/ini.v1 v1.55.0 // indirect
27-
gopkg.in/yaml.v2 v2.2.8
16+
github.com/spf13/viper v1.7.1
17+
github.com/stretchr/testify v1.7.0
18+
golang.org/x/tools v0.0.0-20210105210202-9ed45478a130
19+
gopkg.in/yaml.v2 v2.4.0
2820
)

0 commit comments

Comments
 (0)