From 7f63260d559bade78e40ef5e1e698602e6d1e5a4 Mon Sep 17 00:00:00 2001 From: Khosrow Moossavi Date: Wed, 26 May 2021 13:57:57 -0400 Subject: [PATCH] Update to go1.16.4 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 dbc45ea..67fb4f6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,7 +7,7 @@ on: pull_request: env: - GO_VERSION: "1.16.3" + GO_VERSION: "1.16.4" REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }} jobs: diff --git a/.github/workflows/prerelease.yaml b/.github/workflows/prerelease.yaml index 847803b..5af970f 100644 --- a/.github/workflows/prerelease.yaml +++ b/.github/workflows/prerelease.yaml @@ -6,7 +6,7 @@ on: - "v*.*.*-*" env: - GO_VERSION: "1.16.3" + GO_VERSION: "1.16.4" REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }} jobs: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 034abe8..04a7beb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -7,7 +7,7 @@ on: - "!v*.*.*-*" env: - GO_VERSION: "1.16.3" + GO_VERSION: "1.16.4" REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }} jobs: diff --git a/Dockerfile b/Dockerfile index 9dc131c..bdd00bf 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.3-alpine AS builder +FROM golang:1.16.4-alpine AS builder RUN apk add --update --no-cache make