Skip to content

Commit 208e1ac

Browse files
committed
multi: bump minimum golang version to 1.15
Bump the minimum golang version to 1.15 in the go.mod file. The go version is also updated in the Dockerfile and travis.yml file. This is required so that the correct `errors.Is` method is used.
1 parent 4b68fce commit 208e1ac

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ git:
1313
depth: false
1414

1515
go:
16-
- "1.13.x"
16+
- "1.15.x"
1717

1818
env:
1919
global:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.13-alpine as builder
1+
FROM golang:1.15-alpine as builder
22

33
# Copy in the local repository to build from.
44
COPY . /go/src/github.com/lightningnetwork/loop

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ require (
2626
gopkg.in/macaroon.v2 v2.1.0
2727
)
2828

29-
go 1.13
29+
go 1.15

0 commit comments

Comments
 (0)