From 818706be1871bfa6663c0e8db56dd8a6d86901eb Mon Sep 17 00:00:00 2001 From: vcaesar Date: Fri, 28 Feb 2020 11:20:46 -0400 Subject: [PATCH] update dockerfile, go.yml and appveyor.yml to go1.14 --- .circleci/images/primary/Dockerfile | 2 +- .github/workflows/go.yml | 4 ++-- appveyor.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/images/primary/Dockerfile b/.circleci/images/primary/Dockerfile index f815cc9..fd16c41 100644 --- a/.circleci/images/primary/Dockerfile +++ b/.circleci/images/primary/Dockerfile @@ -1,5 +1,5 @@ # FROM golang:1.10.1 -FROM golang:1.13.8-stretch AS build +FROM golang:1.14-stretch AS build # FROM govgo/go:1.11.1 RUN apt-get update && apt-get install -y --no-install-recommends \ diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 41acbd6..4e5bb5d 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -10,10 +10,10 @@ jobs: runs-on: ${{ matrix.os }} steps: - - name: Set up Go 1.13 + - name: Set up Go 1.14 uses: actions/setup-go@v1 with: - go-version: 1.13 + go-version: 1.14 id: go - name: Check out code into the Go module directory diff --git a/appveyor.yml b/appveyor.yml index 894988b..61d71e1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -34,7 +34,7 @@ environment: PATH: C:\msys64\mingw32\bin\;C:\Program Files (x86)\NSIS\;%PATH% # - COMPILER: MINGW_W64 # ARCHITECTURE: x64 - GOVERSION: 1.13.8 + GOVERSION: 1.14 # GOPATH: c:\gopath # scripts that run after cloning repository