From cf30796ad776e26a41aa1b37149041ffea1de047 Mon Sep 17 00:00:00 2001 From: 9seconds Date: Thu, 25 Feb 2021 16:49:04 +0300 Subject: [PATCH] Add support of golang 1.16 --- .github/workflows/ci.yaml | 3 ++- Dockerfile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c5e0afb..054573d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -27,7 +27,8 @@ jobs: matrix: go_version: - ~1.14 - - ^1.15 + - ~1.15 + - ^1.16 steps: - name: Checkout uses: actions/checkout@v2 diff --git a/Dockerfile b/Dockerfile index d391dbc..b7f8077 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,12 +6,13 @@ ############################################################################### # BUILD STAGE -FROM golang:1.15-alpine AS build-env +FROM golang:1.16-alpine AS build-env ENV CGO_ENABLED=0 RUN set -x \ && apk --update add \ + bash \ ca-certificates \ git \ make