diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d6c090c..c2411fe 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.14.x + go-version: 1.15.x - name: Run unit tests run: make test - name: Check if working tree is dirty diff --git a/Dockerfile b/Dockerfile index 95e6e04..67bdb5e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.14-alpine as builder +FROM golang:1.15-alpine as builder ARG REVISION diff --git a/Dockerfile.base b/Dockerfile.base index 6ff9489..c3bbb0c 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -1,4 +1,4 @@ -FROM golang:1.14 +FROM golang:1.15 WORKDIR /workspace diff --git a/go.mod b/go.mod index afe0d8a..1d22e2f 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/stefanprodan/podinfo -go 1.14 +go 1.15 require ( github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751