Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump LND and go versions #231

Merged
merged 1 commit into from
Jul 11, 2024
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/actions/build-lspd/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
go-version: '1.21.4'

- name: build
run: make release-all
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/setup-lnd-client/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ inputs:
client-ref:
description: 'The Git reference for the Client version of LND'
required: true
default: 'v0.16.2-breez'
default: 'v0.17.5-breez-3'

go-version:
description: 'The Go version for building LND'
required: true
default: ^1.19
default: ^1.21.4

runs:
using: 'composite'
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/setup-lnd-lsp/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ inputs:
lsp-ref:
description: 'The Git reference for the LSP version of LND'
required: true
default: 'breez-node-v0.17.2-beta'
default: 'breez-node-v0.18.2-beta'

go-version:
description: 'The Go version for building LND'
required: true
default: ^1.19
default: ^1.21.4

runs:
using: 'composite'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ on:
pull_request:
env:
BITCOIN_VERSION: '25.0'
LSP_REF: 'breez-node-v0.17.5-beta'
LSP_REF: 'breez-node-v0.18.2-beta'
CLIENT_REF: 'v0.17.5-breez-3'
GO_VERSION: '^1.19'
GO_VERSION: '^1.21.4'
CLN_VERSION: 'v24.05'

concurrency:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ on:
workflow_dispatch:

env:
LSPD_GO_VERSION: 1.21.0
LND_GO_VERSION: 1.21.0
LND_REF: 0c939786ced78a981bd77c7da628bfcf86ada568
LSPD_GO_VERSION: 1.21.4
LND_GO_VERSION: 1.21.4
LND_REF: fb0e72c1a836b1186e24d72f5fe3ca4b27c1919c
CLN_REF: v24.02.1

jobs:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/breez/lspd

go 1.19
go 1.21.4

require (
github.com/GoWebProd/uuid7 v0.0.0-20230623091058-5f5954faed6a
Expand Down
Loading