Skip to content

Commit f4bf99b

Browse files
authored
Merge pull request #9462 from guggero/go-1-22-11
Update to Go 1.22.11
2 parents 32cdbb4 + 94efe06 commit f4bf99b

File tree

12 files changed

+13
-11
lines changed

12 files changed

+13
-11
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ env:
3434

3535
# If you change this please also update GO_VERSION in Makefile (then run
3636
# `make lint` to see where else it needs to be updated as well).
37-
GO_VERSION: 1.22.6
37+
GO_VERSION: 1.22.11
3838

3939
jobs:
4040
########################

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ defaults:
1212
env:
1313
# If you change this please also update GO_VERSION in Makefile (then run
1414
# `make lint` to see where else it needs to be updated as well).
15-
GO_VERSION: 1.22.6
15+
GO_VERSION: 1.22.11
1616

1717
jobs:
1818
main:

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
run:
22
# If you change this please also update GO_VERSION in Makefile (then run
33
# `make lint` to see where else it needs to be updated as well).
4-
go: "1.22.6"
4+
go: "1.22.11"
55

66
# Abort after 10 minutes.
77
timeout: 10m

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# If you change this please also update GO_VERSION in Makefile (then run
22
# `make lint` to see where else it needs to be updated as well).
3-
FROM golang:1.22.6-alpine as builder
3+
FROM golang:1.22.11-alpine as builder
44

55
# Force Go to use the cgo based DNS resolver. This is required to ensure DNS
66
# queries required to connect to linked containers succeed.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ endif
3535
# GO_VERSION is the Go version used for the release build, docker files, and
3636
# GitHub Actions. This is the reference version for the project. All other Go
3737
# versions are checked against this version.
38-
GO_VERSION = 1.22.6
38+
GO_VERSION = 1.22.11
3939

4040
GOBUILD := $(LOOPVARFIX) go build -v
4141
GOINSTALL := $(LOOPVARFIX) go install -v

dev.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# If you change this please also update GO_VERSION in Makefile (then run
22
# `make lint` to see where else it needs to be updated as well).
3-
FROM golang:1.22.6-alpine as builder
3+
FROM golang:1.22.11-alpine as builder
44

55
LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"
66

docker/btcd/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# If you change this please also update GO_VERSION in Makefile (then run
22
# `make lint` to see where else it needs to be updated as well).
3-
FROM golang:1.22.6-alpine as builder
3+
FROM golang:1.22.11-alpine as builder
44

55
LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"
66

docs/release-notes/release-notes-0.19.0.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,8 @@ config option](https://github.com/lightningnetwork/lnd/pull/9182) and introduce
234234
a new option `channel-max-fee-exposure` which is unambiguous in its description.
235235
The underlying functionality between those two options remain the same.
236236

237+
* [Golang was updated to
238+
`v1.22.11`](https://github.com/lightningnetwork/lnd/pull/9462).
237239

238240
## Breaking Changes
239241
## Performance Improvements

lnrpc/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# If you change this please also update GO_VERSION in Makefile (then run
22
# `make lint` to see where else it needs to be updated as well).
3-
FROM golang:1.22.6-bookworm
3+
FROM golang:1.22.11-bookworm
44

55
RUN apt-get update && apt-get install -y \
66
git \

lnrpc/gen_protos_docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -e
66
DIR="$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)"
77

88
# golang docker image version used in this script.
9-
GO_IMAGE=docker.io/library/golang:1.22.6-alpine
9+
GO_IMAGE=docker.io/library/golang:1.22.11-alpine
1010

1111
PROTOBUF_VERSION=$(docker run --rm -v $DIR/../:/lnd -w /lnd $GO_IMAGE \
1212
go list -f '{{.Version}}' -m google.golang.org/protobuf)

0 commit comments

Comments
 (0)