From 200a203d22db12f59eb6d1f2a52492f78db495c8 Mon Sep 17 00:00:00 2001 From: Slyghtning Date: Tue, 19 Aug 2025 15:44:19 +0200 Subject: [PATCH] gomod: bump go to v1.24.6 --- Dockerfile | 2 +- go.mod | 2 +- tools/Dockerfile | 2 +- tools/go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index baadf93..b793325 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.12-alpine as builder +FROM golang:1.24.6-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/go.mod b/go.mod index b68d1e9..31bfc9f 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/lightninglabs/aperture -go 1.23.12 +go 1.24.6 require ( github.com/btcsuite/btcd v0.24.3-0.20250318170759-4f4ea81776d6 diff --git a/tools/Dockerfile b/tools/Dockerfile index a2514e3..cc29fcc 100644 --- a/tools/Dockerfile +++ b/tools/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.12-bookworm +FROM golang:1.24.6-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 414553d..70ceef1 100644 --- a/tools/go.mod +++ b/tools/go.mod @@ -1,6 +1,6 @@ module github.com/lightninglabs/aperture/tools -go 1.23.12 +go 1.24.6 require ( github.com/golangci/golangci-lint v1.64.5