From 224b8f2e460f10c966b42bd33cca4d16f6b6d78e Mon Sep 17 00:00:00 2001 From: Enrique Lacal Date: Tue, 30 Jun 2026 11:55:44 +0100 Subject: [PATCH 1/2] chore: relax Go version to 1.26.0 Loosen the pinned Go version from 1.26.4 to the 1.26 minor line across go.mod, the Dockerfile builder image, and the CI workflow. Signed-off-by: Enrique Lacal --- .github/workflows/go.yaml | 3 +-- Dockerfile | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index 13a49c4..aefb292 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -22,8 +22,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: "1.26.4" - check-latest: true + go-version: "1.26" - name: Install solc run: | diff --git a/Dockerfile b/Dockerfile index 435e403..1efafed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.26.4-bookworm AS builder +FROM golang:1.26-bookworm AS builder WORKDIR /ethconnect RUN apt-get update -y \ && apt-get install -y build-essential git \ diff --git a/go.mod b/go.mod index ba8e3c5..d8da114 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/hyperledger-firefly/ethconnect -go 1.26.4 +go 1.26.0 require ( github.com/IBM/sarama v1.42.1 From d5b233edb74ecc252caf7091d2aaff4d911423b0 Mon Sep 17 00:00:00 2001 From: Enrique Lacal Date: Tue, 30 Jun 2026 11:56:35 +0100 Subject: [PATCH 2/2] Add toolchain to go.mod Signed-off-by: Enrique Lacal --- go.mod | 2 ++ 1 file changed, 2 insertions(+) diff --git a/go.mod b/go.mod index d8da114..a90e835 100644 --- a/go.mod +++ b/go.mod @@ -2,6 +2,8 @@ module github.com/hyperledger-firefly/ethconnect go 1.26.0 +toolchain go1.26.4 + require ( github.com/IBM/sarama v1.42.1 github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751