-
Notifications
You must be signed in to change notification settings - Fork 114
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
Update golang to v1.17 #228
Conversation
Thanks for your PR,
To skip the vendors CIs use one of:
|
Thanks for your PR,
To skip the vendors CIs use one of:
|
Thanks for your PR,
To skip the vendors CIs use one of:
|
Thanks for the contribution! /lgtm |
@e0ne where are you using go install instead of go get ? i see: sriov-network-operator/Makefile Line 156 in 4baf8e5
|
@adrianchiris I updated PR description. It requires more investigation how to install controller-gen using 'go install' |
looking at Makefile it just replacing go get with go install in |
Unfortunately, it's not so easy:
Simple version bump doesn't work for me. I didn't dig deep into this issue, so I left this change to another PR |
Thanks for your PR,
To skip the vendors CIs use one of:
|
@adrianchiris 'go install' is now used. |
@e0ne it seems to fail trying to install kustomize i will open an issue on it, we will need to deal with before updating to go 1.18. |
Thanks for your PR,
To skip the vendors CIs use one of:
|
@e0ne could you rebase and fix conflicts ? |
This patch introduces following changes: * explicitly set go version to v1.17 in GitHub actions * updates go.mod file and vendored packages * updates go version in Dockerfiles 'go install' instead of 'go get' [1] will be used once k8snetworkplumbingwg#231 is fixed. [1] https://go.dev/doc/go-get-install-deprecation
Thanks for your PR,
To skip the vendors CIs use one of:
|
@adrianchiris done |
@SchSeba @zshi-redhat can we merge this ? |
/lgtm |
This patch introduces following changes:
* explicitly set go version to v1.17 in GitHub actions
* updates go.mod file and vendored packages
* updates go version in Dockerfiles
* uses 'go install' instead of 'go get' [1]