-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reduces go.mod minimum go to patch 1.22.0
Signed-off-by: Tiger Kaovilai <[email protected]>
- Loading branch information
Showing
2 changed files
with
8 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Add golang buildinfo to velero to check toolchain used. Reduce minimum go toolchain in go.mod |
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,6 +1,12 @@ | ||
module github.com/vmware-tanzu/velero | ||
|
||
go 1.22.8 | ||
// Do not pin patch version here. Leave patch at X.Y.0 | ||
// Unset GOTOOLCHAIN to assume GOTOOLCHAIN=local where go cli version in path is used. | ||
// Use env GOTOOLCHAIN=auto to allow go to decide whichever is newer from go.mod or cli in path. | ||
// or GOTOOLCHAIN=goX.Y.Z to use a specific toolchain version | ||
// See: https://go.dev/doc/toolchain#select and https://github.com/vmware-tanzu/velero/issues/8397 | ||
// To bump minor version, run `go get [email protected] toolchain@none` (ie. `go get [email protected] toolchain@none`) | ||
go 1.22.0 | ||
|
||
require ( | ||
cloud.google.com/go/storage v1.40.0 | ||
|