From 99903e1aba9a57f5c2ed67305506346583748c66 Mon Sep 17 00:00:00 2001 From: Pavel Karpy Date: Mon, 15 Aug 2022 19:28:30 +0300 Subject: [PATCH] [#1687] Support v1.19 Golang Signed-off-by: Pavel Karpy --- .github/workflows/go.yml | 2 +- Makefile | 2 +- docs/update-go-instruction.md | 5 ++--- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 9fb216c9..de1dcf3c 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - go: [ '1.17.x', '1.18.x' ] + go: [ '1.17.x', '1.18.x', '1.19.x' ] steps: - name: Setup go uses: actions/setup-go@v2 diff --git a/Makefile b/Makefile index c5ad0c45..7c51d64e 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ HUB_IMAGE ?= nspccdev/neofs HUB_TAG ?= "$(shell echo ${VERSION} | sed 's/^v//')" GO_VERSION ?= 1.17 -LINT_VERSION ?= 1.46.2 +LINT_VERSION ?= 1.48.0 ARCH = amd64 BIN = bin diff --git a/docs/update-go-instruction.md b/docs/update-go-instruction.md index 0613acf5..f69643d3 100644 --- a/docs/update-go-instruction.md +++ b/docs/update-go-instruction.md @@ -14,11 +14,10 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - go: [ 'X.Y.x', 'X.Y.x' ] + go: [ 'X.Y.x', 'X.Y.x', 'X.Y.x' ] ``` -That section should contain two latest Golang minor versions -that are currently supported by Golang authors. +That section should contain three latest Golang minor versions. ## Update docker images