Skip to content

Commit

Permalink
Bump Go to 1.21.5
Browse files Browse the repository at this point in the history
Bump Go to 1.21.5

Signed-off-by: David Enyeart <[email protected]>
  • Loading branch information
denyeart committed Dec 13, 2023
1 parent a650c75 commit 7b5d9b8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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.20.5
GO_VER: 1.21.5

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.20.5
GO_VER: 1.21.5
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.20.5
GO_VER = 1.21.5
UBUNTU_VER ?= 20.04
DEBIAN_VER ?= stretch
BASE_VERSION ?= v1.5.7
Expand Down
2 changes: 1 addition & 1 deletion lib/server/operations/system_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ var _ = Describe("System", func() {

_, err = unauthClient.Get(fmt.Sprintf("https://%s/metrics", system.Addr()))
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("remote error: tls: bad certificate"))
Expect(err.Error()).To(ContainSubstring("remote error: tls: certificate required"))
})
})

Expand Down

0 comments on commit 7b5d9b8

Please sign in to comment.