From 55cb7c36792b72bd93420a159b13be66ca527294 Mon Sep 17 00:00:00 2001 From: "Madhan Raj Mookkandy (from Dev Box)" Date: Wed, 18 Feb 2026 12:44:43 -0800 Subject: [PATCH] chore: update Go to 1.26.0 Update go.mod and pipeline YAML to Go 1.26.0. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .pipelines/build.yaml | 4 ++-- Makefile | 2 +- go.mod | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.pipelines/build.yaml b/.pipelines/build.yaml index 387ed700..51001cc3 100644 --- a/.pipelines/build.yaml +++ b/.pipelines/build.yaml @@ -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' - script: | make golangci-lint diff --git a/Makefile b/Makefile index 335adad8..9a6b00a4 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ all: format test .PHONY: tidy tidy: - go mod tidy + -go mod tidy -e format: gofmt -s -w rpc/ pkg/ diff --git a/go.mod b/go.mod index de46f5f6..adcd06fa 100644 --- a/go.mod +++ b/go.mod @@ -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