diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b26a9f7..5be7ed4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,7 +21,7 @@ env: # /Dockerfile # /frdrpc/Dockerfile # /itest/Dockerfile - GO_VERSION: 1.23.6 + GO_VERSION: 1.24.11 jobs: ######################## diff --git a/Dockerfile b/Dockerfile index cdc1685..7ec9c98 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.6-alpine as builder +FROM golang:1.24.11-alpine as builder # Force Go to use the cgo based DNS resolver. This is required to ensure DNS # queries required to connect to linked containers succeed. diff --git a/frdrpc/Dockerfile b/frdrpc/Dockerfile index 06e0daf..473b4ed 100644 --- a/frdrpc/Dockerfile +++ b/frdrpc/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.6-bookworm +FROM golang:1.24.11-bookworm RUN apt-get update && apt-get install -y \ git \ diff --git a/frdrpc/go.mod b/frdrpc/go.mod index e35f5cc..9d42fe1 100644 --- a/frdrpc/go.mod +++ b/frdrpc/go.mod @@ -14,4 +14,4 @@ require ( google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect ) -go 1.23.6 +go 1.24.11 diff --git a/go.mod b/go.mod index c5d87c1..9c4edf5 100644 --- a/go.mod +++ b/go.mod @@ -195,4 +195,4 @@ require ( // allows us to specify that as an option. replace google.golang.org/protobuf => github.com/lightninglabs/protobuf-go-hex-display v1.30.0-hex-display -go 1.23.6 +go 1.24.11 diff --git a/itest/Dockerfile b/itest/Dockerfile index d37372e..9870d90 100644 --- a/itest/Dockerfile +++ b/itest/Dockerfile @@ -2,7 +2,7 @@ # base images. The first stage builds lnd with the golang base image. # The second stage runs directly on the bitcoind base image and adds all # binaries required to run the tests with. -FROM golang:1.23.6-alpine as builder +FROM golang:1.24.11-alpine as builder ARG LND_VERSION=v0.15.4-beta diff --git a/tools/Dockerfile b/tools/Dockerfile index 737699c..785fdcb 100644 --- a/tools/Dockerfile +++ b/tools/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.6-bookworm +FROM golang:1.24.11-bookworm RUN apt-get update && apt-get install -y git ENV GOCACHE=/tmp/build/.cache diff --git a/tools/go.mod b/tools/go.mod index f264473..14697c8 100644 --- a/tools/go.mod +++ b/tools/go.mod @@ -198,4 +198,4 @@ require ( mvdan.cc/unparam v0.0.0-20240528143540-8a5130ca722f // indirect ) -go 1.23.6 +go 1.24.11