-
Notifications
You must be signed in to change notification settings - Fork 55
[cherry-pick] chore: update Go to 1.26.0 #420
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,7 +18,7 @@ jobs: | |
| steps: | ||
| - task: GoTool@0 | ||
| inputs: | ||
| version: '1.25.3' | ||
| version: '1.26' | ||
| - task: InstallSSHKey@0 | ||
| inputs: | ||
| knownHostsEntry: '$(KNOWN_HOST)' | ||
|
|
@@ -78,7 +78,7 @@ jobs: | |
| steps: | ||
| - task: GoTool@0 | ||
| inputs: | ||
| version: '1.25.3' | ||
| version: '1.26' | ||
|
Comment on lines
79
to
+81
|
||
|
|
||
| - script: | | ||
| make golangci-lint | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -19,7 +19,7 @@ all: format test | |||||
|
|
||||||
| .PHONY: tidy | ||||||
| tidy: | ||||||
| go mod tidy | ||||||
| -go mod tidy -e | ||||||
|
||||||
| -go mod tidy -e | |
| go mod tidy |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| module github.com/microsoft/moc | ||
|
|
||
| go 1.25.0 | ||
| go 1.26 | ||
|
|
||
| require ( | ||
| github.com/go-logr/logr v1.4.3 | ||
|
|
||
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.
GoTool@0was previously pinned to a patch version (e.g.,1.25.3), but is now set to1.26. If the task resolves this to “latest 1.26.x”, builds become less reproducible; if it requires a patch version, the pipeline may fail. Consider pinning to the intended patch release (e.g.,1.26.0) to match the PR description and keep CI deterministic.