-
Notifications
You must be signed in to change notification settings - Fork 831
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
fix: Upgrade go 1.22 #5990
fix: Upgrade go 1.22 #5990
Conversation
.github/workflows/draft-release.yml
Outdated
@@ -69,9 +69,9 @@ jobs: | |||
node-version: 14 | |||
|
|||
- name: Setup Go | |||
uses: actions/setup-go@v4 | |||
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.1 |
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.
Could we pin to @v5 instead of the actual hash? The setup-go docs seem to reference the major version, so I would assume they would want to keep things mostly compatible within the same major version (so we wouldn't get issues with the action being updated under us, but instead we could benefit from things like security updates)
tests/integration/go.mod
Outdated
@@ -1,77 +1,77 @@ | |||
module github.com/seldonio/seldon-core/tests/integration/v2 | |||
|
|||
go 1.21 | |||
go 1.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.
go 1.22.0 | |
go 1.22 |
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.
Thanks for noticing this is updated
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, really good to be on golang 1.22
Tested is using smoke test with docker |
What this PR does / why we need it:
This PR upgrades to
0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32
because tag can be changed but she can'tPlease note that
Which issue(s) this PR fixes:
Fixes #INFRA-1151