File tree Expand file tree Collapse file tree 10 files changed +17
-17
lines changed Expand file tree Collapse file tree 10 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 2020
2121 # If you change this value, please change it in the following files as well:
2222 # /Dockerfile
23- GO_VERSION : 1.24.6
23+ GO_VERSION : 1.24.9
2424
2525jobs :
2626 # #######################
Original file line number Diff line number Diff line change 1- FROM --platform=${BUILDPLATFORM} golang:1.24.6 -alpine as builder
1+ FROM --platform=${BUILDPLATFORM} golang:1.24.9 -alpine as builder
22
33# Copy in the local repository to build from.
44COPY . /go/src/github.com/lightningnetwork/loop
Original file line number Diff line number Diff line change @@ -67,14 +67,14 @@ for a release using the following commands:
6767``` bash
6868$ go version
6969go version go1.25.0 linux/amd64
70- $ go install golang.org/dl/go1.24.6 @latest
71- $ go1.24.6 download
72- Unpacking /home/user/sdk/go1.24.6 /go1.24.6 .linux-amd64.tar.gz ...
73- Success. You may now run ' go1.24.6 '
74- $ go1.24.6 version
75- go version go1.24.6 linux/amd64
76-
77- $ GO_CMD=/home/user/go/bin/go1.24.6 ./release.sh v0.31.5
70+ $ go install golang.org/dl/go1.24.9 @latest
71+ $ go1.24.9 download
72+ Unpacking /home/user/sdk/go1.24.9 /go1.24.9 .linux-amd64.tar.gz ...
73+ Success. You may now run ' go1.24.9 '
74+ $ go1.24.9 version
75+ go version go1.24.9 linux/amd64
76+
77+ $ GO_CMD=/home/user/go/bin/go1.24.9 ./release.sh v0.31.5
7878```
7979
8080On MacOS, you will need to install GNU tar and GNU gzip, which can be done with
Original file line number Diff line number Diff line change @@ -225,4 +225,4 @@ replace gonum.org/v1/gonum => github.com/gonum/gonum v0.11.0
225225
226226replace gonum.org/v1/plot => github.com/gonum/plot v0.10.1
227227
228- go 1.24.6
228+ go 1.24.9
Original file line number Diff line number Diff line change 11module github.com/lightninglabs/loop/looprpc
22
3- go 1.24.6
3+ go 1.24.9
44
55require (
66 github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3
Original file line number Diff line number Diff line change 1- FROM golang:1.24.6
1+ FROM golang:1.24.9
22
33RUN apt-get update && apt-get install -y --no-install-recommends \
44 git ca-certificates zip gpg && rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ if ! command -v "$GO_CMD" >/dev/null 2>&1; then
3737fi
3838
3939# Make sure we have the expected Go version installed.
40- EXPECTED_VERSION=" go1.24.6 "
40+ EXPECTED_VERSION=" go1.24.9 "
4141INSTALLED_VERSION=$( " $GO_CMD " version 2> /dev/null | awk ' {print $3}' )
4242if [ " $INSTALLED_VERSION " = " $EXPECTED_VERSION " ]; then
4343 green " Go version matches expected: $INSTALLED_VERSION "
Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ require (
1313 google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
1414)
1515
16- go 1.24.6
16+ go 1.24.9
Original file line number Diff line number Diff line change 1- FROM golang:1.24.6
1+ FROM golang:1.24.9
22
33RUN apt-get update && apt-get install -y --no-install-recommends git ca-certificates \
44 && rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change 11module github.com/lightninglabs/loop/tools
22
3- go 1.24.6
3+ go 1.24.9
44
55require (
66 // Once golangci-lint v2.4.1 update it here.
You can’t perform that action at this time.
0 commit comments