Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to go 18 #748

Merged
merged 2 commits into from
Mar 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: set up Go
uses: actions/setup-go@v2
with: { go-version: '^1.17' }
with: { go-version: '^1.18' }

- name: setup carvel tooling binaries
uses: vmware-tanzu/carvel-setup-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upgrade-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: set up Go
uses: actions/setup-go@v2
with: {go-version: '^1.17'}
with: {go-version: '^1.18'}

- name: setup base dependencies
run: |-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: set up Go
uses: actions/setup-go@v2
with: {go-version: '^1.17'}
with: {go-version: '^1.18'}

- name: setup carvel tooling binaries
uses: vmware-tanzu/carvel-setup-action@v1
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The Cartographer project team welcomes contributions from the community. If you
## Development Dependencies

- [`ctlptl`]: for deploying local changes to a local registry
- [`go`]: for compiling the controllers as well as other dependencies - 1.17+
- [`go`]: for compiling the controllers as well as other dependencies - 1.18+
- [`kapp`]: for managing groups of kubernetes objects in a cluster (like our CRDs etc)
- [`kbld`]: for resolving image references to absolute ones
- [`kind`]: to run a local cluster
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/vmware-tanzu/cartographer

go 1.17
go 1.18

require (
github.com/MakeNowJust/heredoc v1.0.0
Expand Down
172 changes: 0 additions & 172 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion hack/tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/vmware-tanzu/cartographer/hack/tools

go 1.17
go 1.18

require (
github.com/daixiang0/gci v0.3.3
Expand Down