From 8ec9b3c77bd118ecd5739d507b1e49f8b59ce336 Mon Sep 17 00:00:00 2001 From: Christopher Crone Date: Thu, 16 Jul 2020 13:22:08 +0200 Subject: [PATCH] dependencies: Bump Golang and linter * Go 1.14.5 * golangci-lint 1.28.3 Signed-off-by: Christopher Crone --- .github/workflows/ci.yml | 2 +- Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1f5972b5e..c8bc5bcf2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - name: Run golangci-lint run: | - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b . v1.28.1 + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b . v1.28.3 ./golangci-lint run --timeout 10m0s build: diff --git a/Dockerfile b/Dockerfile index b74e04c71..3bafd0cf0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,8 +12,8 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -ARG GO_VERSION=1.14.4-alpine -ARG GOLANGCI_LINT_VERSION=v1.28.1-alpine +ARG GO_VERSION=1.14.5-alpine +ARG GOLANGCI_LINT_VERSION=v1.28.3-alpine FROM --platform=${BUILDPLATFORM} golang:${GO_VERSION} AS base WORKDIR /api