-
Couldn't load subscription status.
- Fork 138
build: update CI+release version to Go 1.25.2 #1847
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,7 @@ defaults: | |
| shell: bash | ||
|
|
||
| env: | ||
| GO_VERSION: 1.24.6 | ||
| GO_VERSION: 1.25.2 | ||
|
|
||
| jobs: | ||
| main: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM golang:1.24.6 as builder | ||
| FROM golang:1.25.2 as builder | ||
|
|
||
| WORKDIR /app | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM golang:1.24.6 as builder | ||
| FROM golang:1.25.2 as builder | ||
|
|
||
| WORKDIR /app | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM golang:1.24.6-bookworm | ||
| FROM golang:1.25.2-bookworm | ||
|
|
||
| MAINTAINER Olaoluwa Osuntokun <[email protected]> | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| FROM golang:1.24.6-bookworm | ||
| FROM golang:1.25.2-bookworm | ||
|
|
||
| RUN apt-get update && apt-get install -y \ | ||
| git \ | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| module github.com/lightninglabs/taproot-assets/taprpc | ||
|
|
||
| go 1.24.6 | ||
| go 1.24.8 | ||
Roasbeef marked this conversation as resolved.
Show resolved
Hide resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we bump this to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We typically make sure we support building with the last two Go versions. Changing this would mean you can't build with Go 1.24. |
||
|
|
||
| require ( | ||
| github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| module github.com/lightninglabs/taproot-assets/tools | ||
|
|
||
| go 1.24.6 | ||
| go 1.24.8 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. While updating the Go version, it's a good opportunity to synchronize dependencies with the root There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. good point here for the tools. |
||
|
|
||
| require ( | ||
| github.com/btcsuite/btcd v0.24.2 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be 1.25.2 also?