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
Use go 1.17 to build release assets #3007
Use go 1.17 to build release assets #3007
Conversation
For some reason, I forgot to use the setup-go action for that workflow when I added it, which means that we have been using the default Go version provided by the Github runners since the beginning. The default Go version is currently 1.15 (https://github.com/actions/virtual-environments/blob/8fd74ebe0f0706cb6aa2cc01f5863961d01173e9/images/linux/toolsets/toolset-2004.json#L52), which is not maintained. We now use the setup-go action to use the same Go version as all other workflows (1.17). Signed-off-by: Antonin Bas <abas@vmware.com>
|
Thanks @liu4480 for reporting this issue |
|
/skip-all |
Codecov Report
@@ Coverage Diff @@
## main #3007 +/- ##
==========================================
- Coverage 61.06% 59.71% -1.36%
==========================================
Files 289 289
Lines 24548 24548
==========================================
- Hits 14991 14658 -333
- Misses 7938 8289 +351
+ Partials 1619 1601 -18
Flags with carried forward coverage won't be shown. Click here to find out more.
|
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.
LGTM
|
Cherry-picking this to 1.4 and 1.3 (1.3 is when we switched from Go 1.15 to 1.17) |
For some reason, I forgot to use the setup-go action for that workflow when I added it, which means that we have been using the default Go version provided by the Github runners since the beginning. The default Go version is currently 1.15 (https://github.com/actions/virtual-environments/blob/8fd74ebe0f0706cb6aa2cc01f5863961d01173e9/images/linux/toolsets/toolset-2004.json#L52), which is not maintained. We now use the setup-go action to use the same Go version as all other workflows (1.17). Signed-off-by: Antonin Bas <abas@vmware.com>
For some reason, I forgot to use the setup-go action for that workflow
when I added it, which means that we have been using the default Go
version provided by the Github runners since the beginning. The default
Go version is currently 1.15, which is not maintained.
We now use the setup-go action to use the same Go version as all other
workflows (1.17).
Signed-off-by: Antonin Bas abas@vmware.com