File tree Expand file tree Collapse file tree 11 files changed +24
-24
lines changed Expand file tree Collapse file tree 11 files changed +24
-24
lines changed Original file line number Diff line number Diff line change 34
34
35
35
# If you change this please also update GO_VERSION in Makefile (then run
36
36
# `make lint` to see where else it needs to be updated as well).
37
- GO_VERSION : 1.22.11
37
+ GO_VERSION : 1.23.6
38
38
39
39
jobs :
40
40
# #######################
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ defaults:
12
12
env :
13
13
# If you change this please also update GO_VERSION in Makefile (then run
14
14
# `make lint` to see where else it needs to be updated as well).
15
- GO_VERSION : 1.22.11
15
+ GO_VERSION : 1.23.6
16
16
17
17
jobs :
18
18
main :
Original file line number Diff line number Diff line change 1
1
run :
2
2
# If you change this please also update GO_VERSION in Makefile (then run
3
3
# `make lint` to see where else it needs to be updated as well).
4
- go : " 1.22.11 "
4
+ go : " 1.23.6 "
5
5
6
6
# Abort after 10 minutes.
7
7
timeout : 10m
Original file line number Diff line number Diff line change 1
1
# If you change this please also update GO_VERSION in Makefile (then run
2
2
# `make lint` to see where else it needs to be updated as well).
3
- FROM golang:1.22.11 -alpine as builder
3
+ FROM golang:1.23.6 -alpine as builder
4
4
5
5
# Force Go to use the cgo based DNS resolver. This is required to ensure DNS
6
6
# queries required to connect to linked containers succeed.
Original file line number Diff line number Diff line change 35
35
# GO_VERSION is the Go version used for the release build, docker files, and
36
36
# GitHub Actions. This is the reference version for the project. All other Go
37
37
# versions are checked against this version.
38
- GO_VERSION = 1.22.11
38
+ GO_VERSION = 1.23.6
39
39
40
40
GOBUILD := $(LOOPVARFIX ) go build -v
41
41
GOINSTALL := $(LOOPVARFIX ) go install -v
Original file line number Diff line number Diff line change 1
1
# If you change this please also update GO_VERSION in Makefile (then run
2
2
# `make lint` to see where else it needs to be updated as well).
3
- FROM golang:1.22.11 -alpine as builder
3
+ FROM golang:1.23.6 -alpine as builder
4
4
5
5
LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"
6
6
Original file line number Diff line number Diff line change 1
1
# If you change this please also update GO_VERSION in Makefile (then run
2
2
# `make lint` to see where else it needs to be updated as well).
3
- FROM golang:1.22.11 -alpine as builder
3
+ FROM golang:1.23.6 -alpine as builder
4
4
5
5
LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"
6
6
Original file line number Diff line number Diff line change 1
1
# If you change this please also update GO_VERSION in Makefile (then run
2
2
# `make lint` to see where else it needs to be updated as well).
3
- FROM golang:1.22.11 -bookworm
3
+ FROM golang:1.23.6 -bookworm
4
4
5
5
RUN apt-get update && apt-get install -y \
6
6
git \
Original file line number Diff line number Diff line change 3
3
set -e
4
4
5
5
# Directory of the script file, independent of where it's called from.
6
- DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd) "
6
+ DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd) "
7
7
8
8
# golang docker image version used in this script.
9
- GO_IMAGE=docker.io/library/golang:1.22.11 -alpine
9
+ GO_IMAGE=docker.io/library/golang:1.23.6 -alpine
10
10
11
11
PROTOBUF_VERSION=$( docker run --rm -v $DIR /../:/lnd -w /lnd $GO_IMAGE \
12
- go list -f ' {{.Version}}' -m google.golang.org/protobuf)
12
+ go list -f ' {{.Version}}' -m google.golang.org/protobuf)
13
13
GRPC_GATEWAY_VERSION=$( docker run --rm -v $DIR /../:/lnd -w /lnd $GO_IMAGE \
14
- go list -f ' {{.Version}}' -m github.com/grpc-ecosystem/grpc-gateway/v2)
14
+ go list -f ' {{.Version}}' -m github.com/grpc-ecosystem/grpc-gateway/v2)
15
15
16
16
echo " Building protobuf compiler docker image..."
17
17
docker build -t lnd-protobuf-builder \
18
- --build-arg PROTOBUF_VERSION=" $PROTOBUF_VERSION " \
19
- --build-arg GRPC_GATEWAY_VERSION=" $GRPC_GATEWAY_VERSION " \
20
- .
18
+ --build-arg PROTOBUF_VERSION=" $PROTOBUF_VERSION " \
19
+ --build-arg GRPC_GATEWAY_VERSION=" $GRPC_GATEWAY_VERSION " \
20
+ .
21
21
22
22
echo " Compiling and formatting *.proto files..."
23
23
docker run \
24
- --rm \
25
- --user " $UID :$( id -g) " \
26
- -e UID=$UID \
27
- -e COMPILE_MOBILE \
28
- -e SUBSERVER_PREFIX \
29
- -v " $DIR /../:/build" \
30
- lnd-protobuf-builder
24
+ --rm \
25
+ --user " $UID :$( id -g) " \
26
+ -e UID=$UID \
27
+ -e COMPILE_MOBILE \
28
+ -e SUBSERVER_PREFIX \
29
+ -v " $DIR /../:/build" \
30
+ lnd-protobuf-builder
Original file line number Diff line number Diff line change 1
1
# If you change this please also update GO_VERSION in Makefile (then run
2
2
# `make lint` to see where else it needs to be updated as well).
3
- FROM golang:1.22.11 -bookworm
3
+ FROM golang:1.23.6 -bookworm
4
4
5
5
MAINTAINER Olaoluwa Osuntokun <laolu@lightning.engineering>
6
6
You can’t perform that action at this time.
0 commit comments