From e9b5e6b995c92636a15ddda26ddadb14ccc38e8c Mon Sep 17 00:00:00 2001 From: i-norden Date: Mon, 11 Oct 2021 11:24:05 -0500 Subject: [PATCH] bump Dockerfile to go 1.16; fix constraints issue by bumping CI tests to go 1.16 and 1.17 --- .github/workflows/on-pr.yaml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/on-pr.yaml b/.github/workflows/on-pr.yaml index 6a731bb1..581ca99b 100644 --- a/.github/workflows/on-pr.yaml +++ b/.github/workflows/on-pr.yaml @@ -16,7 +16,7 @@ jobs: GOPATH: /tmp/go strategy: matrix: - go-version: [1.14.x, 1.15.x] + go-version: [1.16.x, 1.17.x] os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: @@ -40,7 +40,7 @@ jobs: GOPATH: /tmp/go strategy: matrix: - go-version: [1.15.x] + go-version: [1.16.x] os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: diff --git a/Dockerfile b/Dockerfile index c9d7d473..d84a30a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.14-alpine as builder +FROM golang:1.16-alpine as builder RUN apk --update --no-cache add make git g++ linux-headers # DEBUG