From dd0ae35a232c3709105d9719c3842b202b5858a5 Mon Sep 17 00:00:00 2001 From: Fedor Partanskiy Date: Sun, 10 May 2026 13:07:54 +0300 Subject: [PATCH] bump go to 1.26.3 Signed-off-by: Fedor Partanskiy --- docs/source/prereqs.md | 4 ++-- go.mod | 2 +- integration/chaincode/module/go.mod | 2 +- tools/go.mod | 2 +- vagrant/golang.sh | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/source/prereqs.md b/docs/source/prereqs.md index 7ace37b8d04..f14d5b83b59 100644 --- a/docs/source/prereqs.md +++ b/docs/source/prereqs.md @@ -73,8 +73,8 @@ Optional: Install the latest Fabric supported version of [Go](https://golang.org installed (only required if you will be writing Go chaincode or SDK applications). ```shell -brew install go@1.26.1 -go version # => go1.26.1 darwin/amd64 +brew install go@1.26.3 +go version # => go1.26.3 darwin/amd64 ``` ### JQ diff --git a/go.mod b/go.mod index c8aed570ce6..b09cc76d57c 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/hyperledger/fabric -go 1.26.1 +go 1.26.3 require ( code.cloudfoundry.org/clock v1.15.0 diff --git a/integration/chaincode/module/go.mod b/integration/chaincode/module/go.mod index d7516fcf8ff..5c2d987efa0 100644 --- a/integration/chaincode/module/go.mod +++ b/integration/chaincode/module/go.mod @@ -1,6 +1,6 @@ module module -go 1.26.1 +go 1.26.3 require ( github.com/hyperledger/fabric-chaincode-go/v2 v2.0.0-20240802023949-a356b32676fd diff --git a/tools/go.mod b/tools/go.mod index 75b8b7d4b6c..d1ec1be39d5 100644 --- a/tools/go.mod +++ b/tools/go.mod @@ -1,6 +1,6 @@ module tools -go 1.26.1 +go 1.26.3 tool ( github.com/AlekSi/gocov-xml diff --git a/vagrant/golang.sh b/vagrant/golang.sh index 570cb282dae..a78c60686d4 100644 --- a/vagrant/golang.sh +++ b/vagrant/golang.sh @@ -5,7 +5,7 @@ # SPDX-License-Identifier: Apache-2.0 GOROOT='/opt/go' -GO_VERSION=1.26.1 +GO_VERSION=1.26.3 # ---------------------------------------------------------------- # Install Golang