From 417d88e03743c7ee1fcbd85c9786d68a2c8f065e Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Mon, 2 Jun 2025 16:46:44 +0200 Subject: [PATCH] GitHub+tools: bump Go to v1.23.9 --- .github/workflows/main.yml | 2 +- tools/Dockerfile | 2 +- tools/go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 75b6a98..24ee0bf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ env: # go needs absolute directories, using the $HOME variable doesn't work here. GOCACHE: /home/runner/work/go/pkg/build GOPATH: /home/runner/work/go - GO_VERSION: 1.23.6 + GO_VERSION: 1.23.9 jobs: ######################## diff --git a/tools/Dockerfile b/tools/Dockerfile index 737699c..cc836da 100644 --- a/tools/Dockerfile +++ b/tools/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.6-bookworm +FROM golang:1.23.9-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 1a1c327..e17b0ea 100644 --- a/tools/go.mod +++ b/tools/go.mod @@ -1,6 +1,6 @@ module github.com/lightninglabs/chantools/tools -go 1.23.6 +go 1.23.9 require ( github.com/btcsuite/btcd v0.24.2