From d4fe720b15730d13e5117531e370c923926a6718 Mon Sep 17 00:00:00 2001 From: Khosrow Moossavi Date: Thu, 22 Apr 2021 13:24:34 -0400 Subject: [PATCH] Bump Go to 1.16.3 Signed-off-by: Khosrow Moossavi --- .github/workflows/ci.yaml | 2 +- .github/workflows/prerelease.yaml | 2 +- .github/workflows/release.yaml | 2 +- Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8baedc6..7bc4d2c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,7 +7,7 @@ on: pull_request: env: - GO_VERSION: "1.16" + GO_VERSION: "1.16.3" REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }} jobs: diff --git a/.github/workflows/prerelease.yaml b/.github/workflows/prerelease.yaml index 358b5d5..847803b 100644 --- a/.github/workflows/prerelease.yaml +++ b/.github/workflows/prerelease.yaml @@ -6,7 +6,7 @@ on: - "v*.*.*-*" env: - GO_VERSION: "1.16" + GO_VERSION: "1.16.3" REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }} jobs: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5f86c83..31c8730 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -7,7 +7,7 @@ on: - "!v*.*.*-*" env: - GO_VERSION: "1.16" + GO_VERSION: "1.16.3" REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }} jobs: diff --git a/Dockerfile b/Dockerfile index 43fdece..6350dbd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ # You may obtain a copy of the License at the LICENSE file in # the root directory of this source tree. -FROM golang:1.16.0-alpine AS builder +FROM golang:1.16.3-alpine AS builder RUN apk add --update --no-cache ca-certificates bash make gcc musl-dev git openssh wget curl