mirror of
https://github.com/lightningnetwork/lnd.git
synced 2026-08-13 12:32:48 +02:00
build: update CI+release version to Go 1.25.5
This updates the toolchain which we require to build the LND
executable.
(cherry picked from commit 61d82fd1f2)
This commit is contained in:
parent
d59e98b3f4
commit
a7ca338720
12 changed files with 12 additions and 12 deletions
2
.github/actions/setup-go/action.yml
vendored
2
.github/actions/setup-go/action.yml
vendored
|
|
@ -52,7 +52,7 @@ runs:
|
|||
# The key is used to create and later look up the cache. It's made of
|
||||
# four parts:
|
||||
# - The base part is made from the OS name, Go version and a
|
||||
# job-specified key prefix. Example: `linux-go-1.25.3-unit-test-`.
|
||||
# job-specified key prefix. Example: `linux-go-1.25.5-unit-test-`.
|
||||
# It ensures that a job running on Linux with Go 1.25 only looks for
|
||||
# caches from the same environment.
|
||||
# - The unique part is the `hashFiles('**/go.sum')`, which calculates a
|
||||
|
|
|
|||
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
|
@ -40,7 +40,7 @@ env:
|
|||
|
||||
# If you change this please also update GO_VERSION in Makefile (then run
|
||||
# `make lint` to see where else it needs to be updated as well).
|
||||
GO_VERSION: 1.25.3
|
||||
GO_VERSION: 1.25.5
|
||||
|
||||
jobs:
|
||||
static-checks:
|
||||
|
|
|
|||
2
.github/workflows/release.yaml
vendored
2
.github/workflows/release.yaml
vendored
|
|
@ -12,7 +12,7 @@ defaults:
|
|||
env:
|
||||
# If you change this please also update GO_VERSION in Makefile (then run
|
||||
# `make lint` to see where else it needs to be updated as well).
|
||||
GO_VERSION: 1.25.3
|
||||
GO_VERSION: 1.25.5
|
||||
|
||||
jobs:
|
||||
########################
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
run:
|
||||
# If you change this please also update GO_VERSION in Makefile (then run
|
||||
# `make lint` to see where else it needs to be updated as well).
|
||||
go: "1.25.3"
|
||||
go: "1.25.5"
|
||||
|
||||
# Abort after 10 minutes.
|
||||
timeout: 10m
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# If you change this please also update GO_VERSION in Makefile (then run
|
||||
# `make lint` to see where else it needs to be updated as well).
|
||||
FROM golang:1.25.3-alpine as builder
|
||||
FROM golang:1.25.5-alpine as builder
|
||||
|
||||
# Force Go to use the cgo based DNS resolver. This is required to ensure DNS
|
||||
# queries required to connect to linked containers succeed.
|
||||
|
|
|
|||
2
Makefile
2
Makefile
|
|
@ -28,7 +28,7 @@ ACTIVE_GO_VERSION_MINOR := $(shell echo $(ACTIVE_GO_VERSION) | cut -d. -f2)
|
|||
# GO_VERSION is the Go version used for the release build, docker files, and
|
||||
# GitHub Actions. This is the reference version for the project. All other Go
|
||||
# versions are checked against this version.
|
||||
GO_VERSION = 1.25.3
|
||||
GO_VERSION = 1.25.5
|
||||
|
||||
GOBUILD := $(GOCC) build -v
|
||||
GOINSTALL := $(GOCC) install -v
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# If you change this please also update GO_VERSION in Makefile (then run
|
||||
# `make lint` to see where else it needs to be updated as well).
|
||||
FROM golang:1.25.3-alpine AS builder
|
||||
FROM golang:1.25.5-alpine AS builder
|
||||
|
||||
LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# If you change this please also update GO_VERSION in Makefile (then run
|
||||
# `make lint` to see where else it needs to be updated as well).
|
||||
FROM golang:1.25.3-alpine as builder
|
||||
FROM golang:1.25.5-alpine as builder
|
||||
|
||||
LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# If you change this please also update GO_VERSION in Makefile (then run
|
||||
# `make lint` to see where else it needs to be updated as well).
|
||||
FROM golang:1.25.3-bookworm
|
||||
FROM golang:1.25.5-bookworm
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
git \
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ set -e
|
|||
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
|
||||
# golang docker image version used in this script.
|
||||
GO_IMAGE=docker.io/library/golang:1.25.3-alpine
|
||||
GO_IMAGE=docker.io/library/golang:1.25.5-alpine
|
||||
|
||||
PROTOBUF_VERSION=$(docker run --rm -v $DIR/../:/lnd -w /lnd $GO_IMAGE \
|
||||
go list -f '{{.Version}}' -m google.golang.org/protobuf)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# If you change this please also update GO_VERSION in Makefile (then run
|
||||
# `make lint` to see where else it needs to be updated as well).
|
||||
FROM golang:1.25.3-bookworm
|
||||
FROM golang:1.25.5-bookworm
|
||||
|
||||
MAINTAINER Olaoluwa Osuntokun <laolu@lightning.engineering>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM golang:1.25.3
|
||||
FROM golang:1.25.5
|
||||
|
||||
RUN apt-get update && apt-get install -y git
|
||||
ENV GOCACHE=/tmp/build/.cache
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue