Use go v1.15

This commit is contained in:
Tom Wright 2020-10-02 14:48:02 +01:00
parent baa1327214
commit ec2ff8dc25
4 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ jobs:
build:
strategy:
matrix:
go-version: [1.13.x]
go-version: [1.15.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:

View File

@ -4,7 +4,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.13.x]
go-version: [1.15.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:

View File

@ -1,5 +1,5 @@
# This stage builds the go executable.
FROM golang:1.13-buster as go
FROM golang:1.15-buster as go
WORKDIR /root
COPY ./ ./

2
go.mod
View File

@ -1,5 +1,5 @@
module github.com/tomwright/mermaid-server
go 1.13
go 1.15
require github.com/tomwright/lifetime v1.0.0