diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 9787d2311..f6416c417 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -19,7 +19,7 @@ env: # go needs absolute directories, using the $HOME variable doesn't work here. GOPATH: /home/runner/work/go - GO_VERSION: '1.24.6' + GO_VERSION: '1.25.2' LITD_ITEST_BRANCH: 'tapd-main-branch' diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f4f99e535..ff8e9d267 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,7 +10,7 @@ defaults: shell: bash env: - GO_VERSION: 1.24.6 + GO_VERSION: 1.25.2 jobs: main: diff --git a/Dockerfile b/Dockerfile index e234e0135..ce92100fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24.6-alpine as builder +FROM golang:1.25.2-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/Makefile b/Makefile index 42ca4d18d..d726d3a49 100644 --- a/Makefile +++ b/Makefile @@ -57,7 +57,7 @@ DOCKER_TOOLS = docker run \ -v $(shell bash -c "mkdir -p /tmp/go-lint-cache; echo /tmp/go-lint-cache"):/root/.cache/golangci-lint \ -v $$(pwd):/build taproot-assets-tools -GO_VERSION = 1.24.6 +GO_VERSION = 1.25.2 GREEN := "\\033[0;32m" NC := "\\033[0m" diff --git a/dev.Dockerfile b/dev.Dockerfile index 49e74904c..44d8a3a85 100644 --- a/dev.Dockerfile +++ b/dev.Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24.6 as builder +FROM golang:1.25.2 as builder WORKDIR /app diff --git a/docs/examples/basic-price-oracle/go.mod b/docs/examples/basic-price-oracle/go.mod index 4135bfa5a..f1a649f77 100644 --- a/docs/examples/basic-price-oracle/go.mod +++ b/docs/examples/basic-price-oracle/go.mod @@ -1,6 +1,6 @@ module basic-price-oracle -go 1.24.6 +go 1.24.8 // We want to format raw bytes as hex instead of base64. The forked version // allows us to specify that as an option. diff --git a/go.mod b/go.mod index 249c949c6..c87b18be2 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/lightninglabs/taproot-assets -go 1.24.6 +go 1.24.8 require ( github.com/btcsuite/btcd v0.24.3-0.20250318170759-4f4ea81776d6 diff --git a/itest/loadtest/Dockerfile b/itest/loadtest/Dockerfile index d836a4038..f53026dce 100644 --- a/itest/loadtest/Dockerfile +++ b/itest/loadtest/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24.6 as builder +FROM golang:1.25.2 as builder WORKDIR /app diff --git a/make/builder.Dockerfile b/make/builder.Dockerfile index c5ab92b85..ea2bb9fc1 100644 --- a/make/builder.Dockerfile +++ b/make/builder.Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24.6-bookworm +FROM golang:1.25.2-bookworm MAINTAINER Olaoluwa Osuntokun diff --git a/taprpc/Dockerfile b/taprpc/Dockerfile index a90ab48e1..951c08119 100644 --- a/taprpc/Dockerfile +++ b/taprpc/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24.6-bookworm +FROM golang:1.25.2-bookworm RUN apt-get update && apt-get install -y \ git \ diff --git a/taprpc/go.mod b/taprpc/go.mod index 27ef7e84b..dba4ed5f0 100644 --- a/taprpc/go.mod +++ b/taprpc/go.mod @@ -1,6 +1,6 @@ module github.com/lightninglabs/taproot-assets/taprpc -go 1.24.6 +go 1.24.8 require ( github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 diff --git a/tools/Dockerfile b/tools/Dockerfile index 95d70e249..42da65080 100644 --- a/tools/Dockerfile +++ b/tools/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24.6-bookworm +FROM golang:1.25.2-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 930ff3101..9487910aa 100644 --- a/tools/go.mod +++ b/tools/go.mod @@ -1,6 +1,6 @@ module github.com/lightninglabs/taproot-assets/tools -go 1.24.6 +go 1.24.8 require ( github.com/btcsuite/btcd v0.24.2