Skip to content

Commit 20f85c7

Browse files
authored
Merge pull request #441 from jt-nti/bump-setup-go-6.0.0
Bumps actions/setup-go from 5.5.0 to 6.0.0.
2 parents ebecc36 + 1937b78 commit 20f85c7

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3737

3838
- name: Set up Go
39-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
39+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
4040
with:
41-
go-version: 1.23
41+
go-version: 1.24
4242

4343
- name: Build
4444
run: go build -v ./...

.github/workflows/golangci-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
name: lint
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
25+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
2626
with:
27-
go-version: 1.23
27+
go-version: 1.24
2828
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2929
- name: golangci-lint
3030
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG UBUNTU_VER=24.04
22
ARG HLF_VERSION=2.5
33

44
FROM ubuntu:${UBUNTU_VER} AS build
5-
ARG GO_VER=1.23.0
5+
ARG GO_VER=1.24.0
66
ENV GOPATH=/go
77

88
ENV DEBIAN_FRONTEND="noninteractive"

samples/go-contract/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0
22

3-
ARG GO_VER=1.23.0
4-
ARG ALPINE_VER=3.19
3+
ARG GO_VER=1.24.0
4+
ARG ALPINE_VER=3.21
55

66
FROM golang:${GO_VER}-alpine${ALPINE_VER} AS build
77

samples/go-contract/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-labs/fabric-builder-k8s/samples/go-contract
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require github.com/hyperledger/fabric-contract-api-go/v2 v2.2.0
66

0 commit comments

Comments
 (0)