Skip to content

Commit

Permalink
Bump Go to 1.23.1 (#431)
Browse files Browse the repository at this point in the history
Bump Go to 1.23.1.
Also update go.mod to use three digit version to indicate toolchain version (most Go projects have switched to this approach at this point).

Signed-off-by: David Enyeart <[email protected]>
  • Loading branch information
denyeart authored Sep 11, 2024
1 parent 9f4df4b commit 8574fb3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4
GO_VER: 1.23.1

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
tags: [ v1.* ]

env:
GO_VER: 1.22.4
GO_VER: 1.23.1
UBUNTU_VER: 20.04
DOCKER_REGISTRY: ${{ github.repository_owner == 'hyperledger' && 'docker.io' || 'ghcr.io' }}
IMAGE_NAME: ${{ github.repository }}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

PROJECT_NAME = fabric-ca

GO_VER = 1.22.4
GO_VER = 1.23.1
UBUNTU_VER ?= 20.04
DEBIAN_VER ?= stretch
BASE_VERSION ?= v1.5.12
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The remainder of this guide is intended for developers contributing to Fabric CA

## Prerequisites

* Go 1.22 installation or later
* Go 1.23 installation or later
* docker version 17.03 or later
* docker-compose version 1.11 or later

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hyperledger/fabric-ca

go 1.22
go 1.23.1

require (
github.com/IBM/idemix v0.0.2-0.20231011101252-a4feda90f3f7
Expand Down

0 comments on commit 8574fb3

Please sign in to comment.