From fde678ea0e73877e7878fa1b29dd813d399c498a Mon Sep 17 00:00:00 2001 From: Fedor Partanskiy Date: Fri, 24 Jan 2025 22:32:52 +0300 Subject: [PATCH] bump go 1.23.5 Signed-off-by: Fedor Partanskiy --- .github/workflows/broken-link-checker.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/verify-build.yml | 2 +- .github/workflows/vulnerability-scan.yml | 2 +- Makefile | 2 +- docs/source/prereqs.md | 4 ++-- go.mod | 2 +- tools/go.mod | 2 +- vagrant/golang.sh | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/broken-link-checker.yml b/.github/workflows/broken-link-checker.yml index dfb429bcd2a..933fc2a67f5 100644 --- a/.github/workflows/broken-link-checker.yml +++ b/.github/workflows/broken-link-checker.yml @@ -13,7 +13,7 @@ on: - .github/workflows/broken-link-checker.yml env: - GO_VER: 1.23.4 + GO_VER: 1.23.5 permissions: contents: read diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9e122f70b2f..c287b8be870 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ on: - v3.* env: - GO_VER: 1.23.4 + GO_VER: 1.23.5 UBUNTU_VER: 22.04 FABRIC_VER: ${{ github.ref_name }} diff --git a/.github/workflows/verify-build.yml b/.github/workflows/verify-build.yml index bbcc9724ffd..f141125e959 100644 --- a/.github/workflows/verify-build.yml +++ b/.github/workflows/verify-build.yml @@ -13,7 +13,7 @@ on: env: GOPATH: /opt/go PATH: /opt/go/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin - GO_VER: 1.23.4 + GO_VER: 1.23.5 permissions: contents: read # to fetch code (actions/checkout) diff --git a/.github/workflows/vulnerability-scan.yml b/.github/workflows/vulnerability-scan.yml index 2398f05896f..72d341f1b32 100644 --- a/.github/workflows/vulnerability-scan.yml +++ b/.github/workflows/vulnerability-scan.yml @@ -30,6 +30,6 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.23.4 + go-version: 1.23.5 - name: Scan run: make scan diff --git a/Makefile b/Makefile index 72d92964704..a9c121a9fc2 100644 --- a/Makefile +++ b/Makefile @@ -77,7 +77,7 @@ METADATA_VAR += CommitSHA=$(EXTRA_VERSION) METADATA_VAR += BaseDockerLabel=$(BASE_DOCKER_LABEL) METADATA_VAR += DockerNamespace=$(DOCKER_NS) -GO_VER = 1.23.4 +GO_VER = 1.23.5 GO_TAGS ?= RELEASE_EXES = orderer $(TOOLS_EXES) diff --git a/docs/source/prereqs.md b/docs/source/prereqs.md index 0fa6e5a8d9a..ab99ccac5bb 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.23.4 -go version # => go1.23.4 darwin/amd64 +brew install go@1.23.5 +go version # => go1.23.5 darwin/amd64 ``` ### JQ diff --git a/go.mod b/go.mod index 0e8ffc8f40b..66a150b6bf4 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/hyperledger/fabric -go 1.23.4 +go 1.23.5 require ( code.cloudfoundry.org/clock v1.15.0 diff --git a/tools/go.mod b/tools/go.mod index d43efeb2a66..06b49c48e2b 100644 --- a/tools/go.mod +++ b/tools/go.mod @@ -1,6 +1,6 @@ module tools -go 1.23.4 +go 1.23.5 require ( github.com/AlekSi/gocov-xml v0.0.0-20190121064608-3a14fb1c4737 diff --git a/vagrant/golang.sh b/vagrant/golang.sh index e79bbf2a138..c8b16e0b93f 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.23.4 +GO_VERSION=1.23.5 # ---------------------------------------------------------------- # Install Golang