Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:

# If you change this value, please change it in the following files as well:
# /Dockerfile
GO_VERSION: 1.24.10
GO_VERSION: 1.24.9

jobs:
########################
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=${BUILDPLATFORM} golang:1.24.10-alpine as builder
FROM --platform=${BUILDPLATFORM} golang:1.24.9-alpine as builder

# Copy in the local repository to build from.
COPY . /go/src/github.com/lightningnetwork/loop
Expand Down
16 changes: 8 additions & 8 deletions docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ for a release using the following commands:
```bash
$ go version
go version go1.25.0 linux/amd64
$ go install golang.org/dl/go1.24.10@latest
$ go1.24.10 download
Unpacking /home/user/sdk/go1.24.10/go1.24.10.linux-amd64.tar.gz ...
Success. You may now run 'go1.24.10'
$ go1.24.10 version
go version go1.24.10 linux/amd64

$ GO_CMD=/home/user/go/bin/go1.24.10 ./release.sh v0.31.5
$ go install golang.org/dl/go1.24.9@latest
$ go1.24.9 download
Unpacking /home/user/sdk/go1.24.9/go1.24.9.linux-amd64.tar.gz ...
Success. You may now run 'go1.24.9'
$ go1.24.9 version
go version go1.24.9 linux/amd64

$ GO_CMD=/home/user/go/bin/go1.24.9 ./release.sh v0.31.5
```

On MacOS, you will need to install GNU tar and GNU gzip, which can be done with
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -225,4 +225,4 @@ replace gonum.org/v1/gonum => github.com/gonum/gonum v0.11.0

replace gonum.org/v1/plot => github.com/gonum/plot v0.10.1

go 1.24.10
go 1.24.9
2 changes: 1 addition & 1 deletion looprpc/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/lightninglabs/loop/looprpc

go 1.24.10
go 1.24.9

require (
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3
Expand Down
2 changes: 1 addition & 1 deletion release.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.10
FROM golang:1.24.9

RUN apt-get update && apt-get install -y --no-install-recommends \
git ca-certificates zip gpg && rm -rf /var/lib/apt/lists/*
Expand Down
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ if ! command -v "$GO_CMD" >/dev/null 2>&1; then
fi

# Make sure we have the expected Go version installed.
EXPECTED_VERSION="go1.24.10"
EXPECTED_VERSION="go1.24.9"
INSTALLED_VERSION=$("$GO_CMD" version 2>/dev/null | awk '{print $3}')
if [ "$INSTALLED_VERSION" = "$EXPECTED_VERSION" ]; then
green "Go version matches expected: $INSTALLED_VERSION"
Expand Down
2 changes: 1 addition & 1 deletion swapserverrpc/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ require (
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
)

go 1.24.10
go 1.24.9
2 changes: 1 addition & 1 deletion tools/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.10
FROM golang:1.24.9

RUN apt-get update && apt-get install -y --no-install-recommends git ca-certificates \
&& rm -rf /var/lib/apt/lists/*
Expand Down
2 changes: 1 addition & 1 deletion tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/lightninglabs/loop/tools

go 1.24.10
go 1.24.9

require (
// Once golangci-lint v2.4.1 update it here.
Expand Down