diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1b77aa5f0f9..37efc72f074 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ on: tags: [ v2.* ] env: - GO_VER: 1.22.3 + GO_VER: 1.22.4 UBUNTU_VER: 20.04 FABRIC_VER: ${{ github.ref_name }} DOCKER_REGISTRY: ${{ github.repository_owner == 'hyperledger' && 'docker.io' || 'ghcr.io' }} diff --git a/.github/workflows/verify-build.yml b/.github/workflows/verify-build.yml index a45973ad74b..3a7365a7cf1 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.22.3 + GO_VER: 1.22.4 jobs: basic-checks: diff --git a/Makefile b/Makefile index 6e86840240d..ad84432f6e6 100644 --- a/Makefile +++ b/Makefile @@ -80,7 +80,7 @@ METADATA_VAR += CommitSHA=$(EXTRA_VERSION) METADATA_VAR += BaseDockerLabel=$(BASE_DOCKER_LABEL) METADATA_VAR += DockerNamespace=$(DOCKER_NS) -GO_VER = 1.22.3 +GO_VER = 1.22.4 GO_TAGS ?= RELEASE_EXES = orderer $(TOOLS_EXES) diff --git a/docs/source/prereqs.md b/docs/source/prereqs.md index 3beca26a0dd..f87533e9c16 100644 --- a/docs/source/prereqs.md +++ b/docs/source/prereqs.md @@ -79,9 +79,9 @@ 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.22.3 +$ brew install go@1.22.4 $ go version -go1.22.3 darwin/amd64 +go1.22.4 darwin/amd64 ``` ### JQ diff --git a/vagrant/golang.sh b/vagrant/golang.sh index 91fdf0e4ee5..663a6b9440c 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.22.3 +GO_VERSION=1.22.4 # ---------------------------------------------------------------- # Install Golang