File tree Expand file tree Collapse file tree 6 files changed +52
-13
lines changed Expand file tree Collapse file tree 6 files changed +52
-13
lines changed Original file line number Diff line number Diff line change 24
24
# https://github.com/golang/go/issues/51799). There was a race condition
25
25
# introduced with go 1.16.10 that causes the unit tests to fail (could also
26
26
# happen in production).
27
- GO_VERSION : 1.19.2
27
+ GO_VERSION : 1.22.3
28
28
29
29
jobs :
30
30
# #######################
Original file line number Diff line number Diff line change 1
- # Don't bump this until go 1.19 is out (which should include a fix for
2
- # https://github.com/golang/go/issues/51799). There was a race condition
3
- # introduced with go 1.16.10 that causes the unit tests to fail (could also
4
- # happen in production).
5
- FROM golang:1.19.2-alpine as builder
1
+ FROM golang:1.22.3-alpine as builder
6
2
7
3
# Force Go to use the cgo based DNS resolver. This is required to ensure DNS
8
4
# queries required to connect to linked containers succeed.
@@ -17,10 +13,10 @@ ARG checkout="master"
17
13
RUN apk add --no-cache --update alpine-sdk \
18
14
git \
19
15
make \
20
- && git clone https://github.com/lightninglabs/aperture /go/src/github.com/lightninglabs/aperture \
21
- && cd /go/src/github.com/lightninglabs/aperture \
22
- && git checkout $checkout \
23
- && make install
16
+ && git clone https://github.com/lightninglabs/aperture /go/src/github.com/lightninglabs/aperture \
17
+ && cd /go/src/github.com/lightninglabs/aperture \
18
+ && git checkout $checkout \
19
+ && make install
24
20
25
21
# Start a new, final image to reduce size.
26
22
FROM alpine as final
Original file line number Diff line number Diff line change 1
1
module github.com/lightninglabs/aperture
2
2
3
- go 1.19
3
+ go 1.22
4
+
5
+ toolchain go1.22.3
4
6
5
7
require (
6
8
github.com/btcsuite/btcd v0.24.1-0.20240123000108-62e6af035ec5
You can’t perform that action at this time.
0 commit comments