Skip to content

Commit 9ca51ae

Browse files
committed
multi: bump Go version to 1.24.10
1 parent 367bfa5 commit 9ca51ae

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
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.24.9
24+
GO_VERSION: 1.24.10
2525

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

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.24.9-alpine3.22@sha256:8f8959f38530d159bf71d0b3eb0c547dc61e7959d8225d1599cf762477384923 as golangbuilder
35+
FROM golang:1.24.10-alpine3.22@sha256:12c199a889439928e36df7b4c5031c18bfdad0d33cdeae5dd35b2de369b5fbf5 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: 1 addition & 1 deletion
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.24.9
25+
GO_VERSION = 1.24.10
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

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.24.9
3+
go 1.24.10
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.24.9-alpine3.22@sha256:8f8959f38530d159bf71d0b3eb0c547dc61e7959d8225d1599cf762477384923 as golangbuilder
23+
FROM golang:1.24.10-alpine3.22@sha256:12c199a889439928e36df7b4c5031c18bfdad0d33cdeae5dd35b2de369b5fbf5 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.24.9
3+
go 1.24.10
44

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

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.24.9
3+
go 1.24.10
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.24.9-bookworm@sha256:e400aebe4e96e1d52b510fb7a82c417d9377f595f0160eb1bd979d441711d20c
1+
FROM golang:1.24.10-bookworm@sha256:1a974b530d7a37a35bfc16e7581ab963075a06432e51af29642a178695f2371a
22

33
MAINTAINER Olaoluwa Osuntokun <laolu@lightning.engineering>
44

perms/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/perms
22

3-
go 1.24.9
3+
go 1.24.10
44

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

tools/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.9-bookworm@sha256:e400aebe4e96e1d52b510fb7a82c417d9377f595f0160eb1bd979d441711d20c
1+
FROM golang:1.24.10-bookworm@sha256:1a974b530d7a37a35bfc16e7581ab963075a06432e51af29642a178695f2371a
22

33
RUN apt-get update && apt-get install -y git
44
ENV GOCACHE=/tmp/build/.cache

0 commit comments

Comments
 (0)