-
Notifications
You must be signed in to change notification settings - Fork 16
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
Set Golang version for specifing the correct toolchain #139
Set Golang version for specifing the correct toolchain #139
Conversation
Using this specific toolchain we set the minimum requirement for Golang version. 'go command uses its own bundled toolchain when that toolchain is at least as new as the go or toolchain lines in the main module'. https://go.dev/doc/toolchain
Tests can fail due to mistmatch
Skipping CI for Draft Pull Request. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: razo7 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@@ -9,7 +9,7 @@ ENVTEST_VERSION ?= v0.0.0-20240112123317-48d9a7b44e54 | |||
# See https://pkg.go.dev/golang.org/x/tools/cmd/goimports?tab=versions for the last version | |||
GOIMPORTS_VERSION ?= v0.17.0 | |||
# See https://github.com/onsi/ginkgo/releases for the last version | |||
GINKGO_VERSION ?= v2.14.0 | |||
GINKGO_VERSION ?= v2.22.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this intentional?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I forgot to add it as part of dbb954b#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6R8
/lgtm |
/retest |
1 similar comment
/retest |
Why we need this PR
Using this specific toolchain we set the minimum requirement for Golang version.
"go command uses its own bundled toolchain when that toolchain is at least as new as the go or toolchain lines in the main module" - https://go.dev/doc/toolchain
Changes made
1.23 -> 1.23.0
Which issue(s) this PR fixes
Test plan