Skip to content

Commit c1c8af6

Browse files
pfi79satota2
authored andcommitted
bump go to 1.23.2
Signed-off-by: Fedor Partanskiy <[email protected]>
1 parent e33fdfc commit c1c8af6

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

.github/workflows/broken-link-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
- .github/workflows/broken-link-checker.yml
1414

1515
env:
16-
GO_VER: 1.23.1
16+
GO_VER: 1.23.2
1717

1818
permissions:
1919
contents: read

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
- v3.*
1313

1414
env:
15-
GO_VER: 1.23.1
15+
GO_VER: 1.23.2
1616
UBUNTU_VER: 22.04
1717
FABRIC_VER: ${{ github.ref_name }}
1818
DOCKER_REGISTRY: ${{ github.repository_owner == 'hyperledger' && 'docker.io' || 'ghcr.io' }}

.github/workflows/verify-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
env:
1414
GOPATH: /opt/go
1515
PATH: /opt/go/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin
16-
GO_VER: 1.23.1
16+
GO_VER: 1.23.2
1717

1818
permissions:
1919
contents: read # to fetch code (actions/checkout)

.github/workflows/vulnerability-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ jobs:
3030
- name: Set up Go
3131
uses: actions/setup-go@v5
3232
with:
33-
go-version: 1.23.1
33+
go-version: 1.23.2
3434
- name: Scan
3535
run: make scan

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ METADATA_VAR += CommitSHA=$(EXTRA_VERSION)
7777
METADATA_VAR += BaseDockerLabel=$(BASE_DOCKER_LABEL)
7878
METADATA_VAR += DockerNamespace=$(DOCKER_NS)
7979

80-
GO_VER = 1.23.1
80+
GO_VER = 1.23.2
8181
GO_TAGS ?=
8282

8383
RELEASE_EXES = orderer $(TOOLS_EXES)

docs/source/prereqs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ Optional: Install the latest Fabric supported version of [Go](https://golang.org
7373
installed (only required if you will be writing Go chaincode or SDK applications).
7474

7575
```shell
76-
brew install [email protected].1
77-
go version # => go1.23.1 darwin/amd64
76+
brew install [email protected].2
77+
go version # => go1.23.2 darwin/amd64
7878
```
7979

8080
### JQ

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/hyperledger/fabric
22

3-
go 1.23.1
3+
go 1.23.2
44

55
require (
66
code.cloudfoundry.org/clock v1.0.0

tools/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module tools
22

3-
go 1.23.1
3+
go 1.23.2
44

55
require (
66
github.com/AlekSi/gocov-xml v0.0.0-20190121064608-3a14fb1c4737

vagrant/golang.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# SPDX-License-Identifier: Apache-2.0
66

77
GOROOT='/opt/go'
8-
GO_VERSION=1.23.1
8+
GO_VERSION=1.23.2
99

1010
# ----------------------------------------------------------------
1111
# Install Golang

0 commit comments

Comments
 (0)