Skip to content

Commit 07fc1df

Browse files
authored
Merge pull request #1815 from lightninglabs/bump-go-1.24.6
Bump go to v1.24.6
2 parents b21d5d2 + 0085406 commit 07fc1df

File tree

15 files changed

+20
-19
lines changed

15 files changed

+20
-19
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.12'
22+
GO_VERSION: '1.24.6'
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.12
13+
GO_VERSION: 1.24.6
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.12-alpine as builder
1+
FROM golang:1.24.6-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.12
60+
GO_VERSION = 1.24.6
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.12 as builder
1+
FROM golang:1.24.6 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.12
3+
go 1.24.6
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: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,12 @@
238238
`ChainPorter` state machine by removing a goroutine and simplifying
239239
event emission. Fixes an itest flake.
240240

241+
- [The Golang version used was bumped to `v1.23.12` to fix a potential issue
242+
with the SQL API](https://github.com/lightninglabs/taproot-assets/pull/1713).
243+
244+
- [The Golang version used was bumped to `v1.24.6` in order to keep up with the
245+
dependencies (LND).](https://github.com/lightninglabs/taproot-assets/pull/1815)
246+
241247
## Breaking Changes
242248

243249
## Performance Improvements
@@ -252,11 +258,6 @@
252258

253259
## Database
254260

255-
## Code Health
256-
257-
- [The Golang version used was bumped to `v1.23.12` to fix a potential issue
258-
with the SQL API](https://github.com/lightninglabs/taproot-assets/pull/1713).
259-
260261
## Tooling and Documentation
261262

262263
- [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.12
3+
go 1.24.6
44

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

internal/test/copy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ func checkAliasing(t *testing.T, debug, strict bool, f1, f2 reflect.Value,
237237
"(shared %s)", path, f1.Kind())
238238

239239
if strict {
240-
t.Fatalf(msg)
240+
t.Fatal(msg)
241241
}
242242

243243
if debug {

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.12 as builder
1+
FROM golang:1.24.6 as builder
22

33
WORKDIR /app
44

0 commit comments

Comments
 (0)