This commit is contained in:
iwilltry42 2020-12-04 14:10:33 +01:00
parent d7b25ac6ab
commit ec79db4ef5
No known key found for this signature in database
GPG Key ID: 7BA57AD1CFF16110
5 changed files with 6 additions and 6 deletions

View File

@ -14,7 +14,7 @@ platform:
steps: steps:
- name: lint - name: lint
image: golang:1.14 image: golang:1.15
commands: commands:
- make ci-setup - make ci-setup
- make check-fmt lint - make check-fmt lint
@ -40,7 +40,7 @@ steps:
- tag - tag
- name: build - name: build
image: golang:1.14 image: golang:1.15
environment: environment:
GIT_TAG: "${DRONE_TAG}" GIT_TAG: "${DRONE_TAG}"
commands: commands:

View File

@ -1,4 +1,4 @@
FROM golang:1.14 as builder FROM golang:1.15 as builder
WORKDIR /app WORKDIR /app
COPY . . COPY . .
RUN make build && bin/k3d version RUN make build && bin/k3d version

2
go.mod
View File

@ -1,6 +1,6 @@
module github.com/rancher/k3d/v4 module github.com/rancher/k3d/v4
go 1.14 go 1.15
require ( require (
github.com/Microsoft/hcsshim v0.8.9 // indirect github.com/Microsoft/hcsshim v0.8.9 // indirect

View File

@ -1,4 +1,4 @@
FROM golang:1.14 as builder FROM golang:1.15 as builder
ARG GIT_TAG ARG GIT_TAG
WORKDIR /app WORKDIR /app
COPY . . COPY . .

View File

@ -1,6 +1,6 @@
module github.com/rancher/k3d/tools module github.com/rancher/k3d/tools
go 1.14 go 1.15
require ( require (
github.com/Microsoft/go-winio v0.4.12 // indirect github.com/Microsoft/go-winio v0.4.12 // indirect