From 57ed3e5b6f912ccd43f9fba78bfdab7602310227 Mon Sep 17 00:00:00 2001 From: Alexey Semenyuk Date: Thu, 2 May 2024 09:32:02 +0500 Subject: [PATCH] Minor fixes Signed-off-by: Alexey Semenyuk --- .github/workflows/go.yml | 2 +- .github/workflows/golangci-lint.yml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index e8bf24f..7146d38 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: '1.21' + go-version: '1.22.2' - name: Build and Test run: make diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index c992151..b33ad97 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: - go-version: '1.21' + go-version: '1.22.2' cache: false - name: golangci-lint uses: golangci/golangci-lint-action@v3 diff --git a/Dockerfile b/Dockerfile index a5b6155..900ed14 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21-alpine3.19 AS builder +FROM golang:1.22.2-alpine AS builder RUN apk add make ARG BUILD_VERSION ENV BUILD_VERSION=${BUILD_VERSION}