Skip to content

Commit 17da06e

Browse files
authored
Merge pull request #1713 from lightninglabs/update-golang-version
mod: update Golang version to v1.23.12 to fix potential SQL bug
2 parents 9058a42 + 4b85ffd commit 17da06e

File tree

15 files changed

+18
-17
lines changed

15 files changed

+18
-17
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ env:
1919
# go needs absolute directories, using the $HOME variable doesn't work here.
2020
GOPATH: /home/runner/work/go
2121

22-
GO_VERSION: '1.23.9'
22+
GO_VERSION: '1.23.12'
2323

2424
LITD_ITEST_BRANCH: 'tapd-main-branch'
2525

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ defaults:
1010
shell: bash
1111

1212
env:
13-
GO_VERSION: 1.23.9
13+
GO_VERSION: 1.23.12
1414

1515
jobs:
1616
main:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.9-alpine as builder
1+
FROM golang:1.23.12-alpine as builder
22

33
# Force Go to use the cgo based DNS resolver. This is required to ensure DNS
44
# queries required to connect to linked containers succeed.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ DOCKER_TOOLS = docker run \
5757
-v $(shell bash -c "mkdir -p /tmp/go-lint-cache; echo /tmp/go-lint-cache"):/root/.cache/golangci-lint \
5858
-v $$(pwd):/build taproot-assets-tools
5959

60-
GO_VERSION = 1.23.9
60+
GO_VERSION = 1.23.12
6161

6262
GREEN := "\\033[0;32m"
6363
NC := "\\033[0m"

dev.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.9 as builder
1+
FROM golang:1.23.12 as builder
22

33
WORKDIR /app
44

docs/examples/basic-price-oracle/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module basic-price-oracle
22

3-
go 1.23.9
3+
go 1.23.12
44

55
// We want to format raw bytes as hex instead of base64. The forked version
66
// allows us to specify that as an option.

docs/release-notes/release-notes-0.7.0.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,9 @@
183183

184184
## Code Health
185185

186+
- [The Golang version used was bumped to `v1.23.12` to fix a potential issue
187+
with the SQL API](https://github.com/lightninglabs/taproot-assets/pull/1713).
188+
186189
## Tooling and Documentation
187190

188191
- [Two new sequence diagrams were

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/lightninglabs/taproot-assets
22

3-
go 1.23.9
3+
go 1.23.12
44

55
require (
66
github.com/btcsuite/btcd v0.24.3-0.20250318170759-4f4ea81776d6

itest/loadtest/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.9 as builder
1+
FROM golang:1.23.12 as builder
22

33
WORKDIR /app
44

make/builder.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.9-bookworm
1+
FROM golang:1.23.12-bookworm
22

33
MAINTAINER Olaoluwa Osuntokun <[email protected]>
44

0 commit comments

Comments
 (0)