Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

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

- name: Build
run: go build -v ./...
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version: 1.23
go-version: 1.24
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: golangci-lint
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG UBUNTU_VER=24.04
ARG HLF_VERSION=2.5

FROM ubuntu:${UBUNTU_VER} AS build
ARG GO_VER=1.23.0
ARG GO_VER=1.24.0
ENV GOPATH=/go

ENV DEBIAN_FRONTEND="noninteractive"
Expand Down
4 changes: 2 additions & 2 deletions samples/go-contract/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SPDX-License-Identifier: Apache-2.0

ARG GO_VER=1.23.0
ARG ALPINE_VER=3.19
ARG GO_VER=1.24.0
ARG ALPINE_VER=3.21

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

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

go 1.23.0
go 1.24.0

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

Expand Down
Loading