diff --git a/.github/workflows/broken-link-checker.yml b/.github/workflows/broken-link-checker.yml index acb67d841a5..9b83d5b3336 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.22.3 + GO_VER: 1.22.4 permissions: contents: read diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6a0d35afa3b..db1b951f353 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ on: - v3.* 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 f4580ebe472..b0c34459e6c 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 permissions: contents: read # to fetch code (actions/checkout) diff --git a/.github/workflows/vulnerability-scan.yml b/.github/workflows/vulnerability-scan.yml index 5108ba4fa69..18729718895 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.22.3 + go-version: 1.22.4 - name: Scan run: make scan diff --git a/Makefile b/Makefile index 74372f48e6a..55d3fcb3fbe 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.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 c92a6d6aa41..2036ae51c3a 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.22.3 -go version # => go1.22.3 darwin/amd64 +brew install go@1.22.4 +go version # => go1.22.4 darwin/amd64 ``` ### JQ diff --git a/go.mod b/go.mod index cfc32318ae5..fa9eb1a9dd5 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/hyperledger/fabric -go 1.22 +go 1.22.4 require ( code.cloudfoundry.org/clock v1.0.0 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