Skip to content

Commit

Permalink
Update Golang version to 1.17 carvel-dev#173
Browse files Browse the repository at this point in the history
  • Loading branch information
seemiller committed Dec 9, 2021
1 parent 669bf7f commit 3cfc253
Show file tree
Hide file tree
Showing 110 changed files with 7,404 additions and 1,301 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16.0
go-version: 1.17.0

- name: Run GoReleaser
# GoReleaser v2.5.0
uses: goreleaser/goreleaser-action@5e15885530fb01d81d1f24e8a6f54ebbd0fed7eb
if: startsWith(github.ref, 'refs/tags/')
with:
version: 0.162.0
version: 0.184.0
args: release --rm-dist --debug
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-gh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: "1.16"
go-version: "1.17"
- name: Check out code into the Go module directory
uses: actions/checkout@v2
with:
Expand Down
49 changes: 45 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,17 +1,58 @@
module github.com/k14s/kbld

go 1.16
go 1.17

require (
github.com/cppforlife/cobrautil v0.0.0-20200514214827-bb86e6965d72
github.com/cppforlife/go-cli-ui v0.0.0-20200716203538-1e47f820817f
github.com/google/go-containerregistry v0.7.0
github.com/hashicorp/go-version v1.3.0
github.com/kisielk/errcheck v1.6.0
github.com/kisielk/errcheck v1.5.0
github.com/spf13/cobra v1.2.1
github.com/vmware-tanzu/carvel-imgpkg v0.22.0
github.com/vmware-tanzu/carvel-imgpkg v0.23.1
github.com/vmware-tanzu/carvel-vendir v0.23.0
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
k8s.io/apimachinery v0.22.3
k8s.io/apimachinery v0.23.0
sigs.k8s.io/yaml v1.3.0
)

require (
github.com/cppforlife/color v1.9.1-0.20200716202919-6706ac40b835 // indirect
github.com/creack/pty v1.1.11 // indirect
github.com/docker/cli v20.10.10+incompatible // indirect
github.com/docker/distribution v2.7.1+incompatible // indirect
github.com/docker/docker v20.10.10+incompatible // indirect
github.com/docker/docker-credential-helpers v0.6.4 // indirect
github.com/go-logr/logr v1.2.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/google/go-cmp v0.5.6 // indirect
github.com/google/gofuzz v1.1.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/k14s/semver/v4 v4.0.1-0.20210701191048-266d47ac6115 // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/onsi/gomega v1.11.0 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.2-0.20210730191737-8e42a01fb1b7 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/vito/go-interact v0.0.0-20171111012221-fa338ed9e9ec // indirect
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e // indirect
golang.org/x/mod v0.4.2 // indirect
golang.org/x/net v0.0.0-20211111160137-58aab5ef257a // indirect
golang.org/x/sys v0.0.0-20211110154304-99a53858aa08 // indirect
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.1.5 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
k8s.io/klog/v2 v2.30.0 // indirect
k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b // indirect
sigs.k8s.io/json v0.0.0-20211020170558-c049b76a60c6 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect
)
48 changes: 28 additions & 20 deletions go.sum

Large diffs are not rendered by default.

8 changes: 0 additions & 8 deletions vendor/github.com/cppforlife/color/go.mod

This file was deleted.

8 changes: 0 additions & 8 deletions vendor/github.com/cppforlife/color/go.sum

This file was deleted.

3 changes: 0 additions & 3 deletions vendor/github.com/go-logr/logr/go.mod

This file was deleted.

3 changes: 0 additions & 3 deletions vendor/github.com/google/gofuzz/go.mod

This file was deleted.

1 change: 0 additions & 1 deletion vendor/github.com/hashicorp/go-version/go.mod

This file was deleted.

2 changes: 0 additions & 2 deletions vendor/github.com/json-iterator/go/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 0 additions & 11 deletions vendor/github.com/json-iterator/go/go.mod

This file was deleted.

15 changes: 0 additions & 15 deletions vendor/github.com/json-iterator/go/go.sum

This file was deleted.

3 changes: 0 additions & 3 deletions vendor/github.com/k14s/semver/v4/go.mod

This file was deleted.

42 changes: 4 additions & 38 deletions vendor/github.com/kisielk/errcheck/errcheck/errcheck.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions vendor/github.com/kisielk/errcheck/go.mod

This file was deleted.

20 changes: 0 additions & 20 deletions vendor/github.com/kisielk/errcheck/go.sum

This file was deleted.

8 changes: 0 additions & 8 deletions vendor/github.com/mattn/go-colorable/go.mod

This file was deleted.

5 changes: 0 additions & 5 deletions vendor/github.com/mattn/go-colorable/go.sum

This file was deleted.

5 changes: 0 additions & 5 deletions vendor/github.com/mattn/go-isatty/go.mod

This file was deleted.

2 changes: 0 additions & 2 deletions vendor/github.com/mattn/go-isatty/go.sum

This file was deleted.

2 changes: 1 addition & 1 deletion vendor/github.com/modern-go/reflect2/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 1 addition & 7 deletions vendor/github.com/modern-go/reflect2/Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions vendor/github.com/modern-go/reflect2/Gopkg.toml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions vendor/github.com/modern-go/reflect2/go_above_118.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 0 additions & 8 deletions vendor/github.com/modern-go/reflect2/go_above_17.go

This file was deleted.

3 changes: 3 additions & 0 deletions vendor/github.com/modern-go/reflect2/go_above_19.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions vendor/github.com/modern-go/reflect2/go_below_118.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 0 additions & 9 deletions vendor/github.com/modern-go/reflect2/go_below_17.go

This file was deleted.

Loading

0 comments on commit 3cfc253

Please sign in to comment.