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..a90e835 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,8 @@ module github.com/hyperledger-firefly/ethconnect -go 1.26.4 +go 1.26.0 + +toolchain go1.26.4 require ( github.com/IBM/sarama v1.42.1