Skip to content

Commit ec9a0e7

Browse files
committed
build: bump go to v1.24.6
1 parent bce4c04 commit ec9a0e7

File tree

14 files changed

+17
-15
lines changed

14 files changed

+17
-15
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ env:
2121
# If you change this value, please change it in the following files as well:
2222
# /Dockerfile
2323
# /dev.Dockerfile
24-
GO_VERSION: 1.23.12
24+
GO_VERSION: 1.24.6
2525

2626
jobs:
2727
########################

.golangci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ linters-settings:
1717
govet:
1818
# Don't report about shadowed variables
1919
check-shadowing: false
20+
disable:
21+
- printf
2022
gofmt:
2123
# simplify code: gofmt with `-s` option, true by default
2224
simplify: true
@@ -33,7 +35,6 @@ linters-settings:
3335
- G306 # Poor file permissions used when writing to a new file.
3436
- G601 # Implicit memory aliasing in for loop.
3537
- G115 # Integer overflow in conversion.
36-
3738
staticcheck:
3839
checks: ["-SA1019"]
3940

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN apk add --no-cache --update alpine-sdk \
3232

3333
# The first stage is already done and all static assets should now be generated
3434
# in the app/build sub directory.
35-
FROM golang:1.23.12-alpine3.22@sha256:383395b794dffa5b53012a212365d40c8e37109a626ca30d6151c8348d380b5f as golangbuilder
35+
FROM golang:1.24.6-alpine3.22@sha256:c8c5f95d64aa79b6547f3b626eb84b16a7ce18a139e3e9ca19a8c078b85ba80d as golangbuilder
3636

3737
# Instead of checking out from git again, we just copy the whole working
3838
# directory of the previous stage that includes the generated static assets.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ PUBLIC_URL :=
2222
# GO_VERSION is the Go version used for the release build, docker files, and
2323
# GitHub Actions. This is the reference version for the project. All other Go
2424
# versions are checked against this version.
25-
GO_VERSION = 1.23.12
25+
GO_VERSION = 1.24.6
2626

2727
# LITD_COMPAT_VERSIONS is a space-separated list of litd versions that are
2828
# installed before running the integration tests which include backward
@@ -246,7 +246,7 @@ install-backward-compat-versions:
246246
run-itest-only:
247247
@$(call print, "Building itest binary.")
248248
CGO_ENABLED=0 $(GOBUILD) -tags="$(ITEST_TAGS)" -o itest/litd-itest -ldflags "$(ITEST_LDFLAGS)" $(PKG)/cmd/litd
249-
CGO_ENABLED=0 $(GOTEST) -v ./itest -tags="$(DEV_TAGS) $(ITEST_TAGS)" -c -o itest/itest.test
249+
CGO_ENABLED=0 $(GOTEST) -v $(ITEST_TEST_FLAGS) ./itest -tags="$(DEV_TAGS) $(ITEST_TAGS)" -c -o itest/itest.test
250250

251251
@$(call print, "Running integration tests.")
252252
rm -rf itest/*.log itest/.logs*; date

autopilotserverrpc/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/lightning-terminal/autopilotserverrpc
22

3-
go 1.23.12
3+
go 1.24.6
44

55
require (
66
google.golang.org/grpc v1.56.3

dev.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN cd /go/src/github.com/lightninglabs/lightning-terminal/app \
2020

2121
# The first stage is already done and all static assets should now be generated
2222
# in the app/build sub directory.
23-
FROM golang:1.23.12-alpine3.22@sha256:383395b794dffa5b53012a212365d40c8e37109a626ca30d6151c8348d380b5f as golangbuilder
23+
FROM golang:1.24.6-alpine3.22@sha256:c8c5f95d64aa79b6547f3b626eb84b16a7ce18a139e3e9ca19a8c078b85ba80d as golangbuilder
2424

2525
# Instead of checking out from git again, we just copy the whole working
2626
# directory of the previous stage that includes the generated static assets.

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/lightning-terminal
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

litrpc/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-bookworm@sha256:d22457a90736648a605cf54c33a7a310bb290e1ac78af2bcbc1d87821c52c4b7
1+
FROM golang:1.24.6-bookworm@sha256:ab1d1823abb55a9504d2e3e003b75b36dbeb1cbcc4c92593d85a84ee46becc6c
22

33
RUN apt-get update && apt-get install -y \
44
git \

litrpc/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/lightning-terminal/litrpc
22

3-
go 1.23.12
3+
go 1.24.6
44

55
require (
66
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0

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.12-bookworm@sha256:d22457a90736648a605cf54c33a7a310bb290e1ac78af2bcbc1d87821c52c4b7
1+
FROM golang:1.24.6-bookworm@sha256:ab1d1823abb55a9504d2e3e003b75b36dbeb1cbcc4c92593d85a84ee46becc6c
22

33
MAINTAINER Olaoluwa Osuntokun <[email protected]>
44

0 commit comments

Comments
 (0)