forked from TrueCloudLab/frostfs-node
[#1687] Support v1.19 Golang
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
parent
30341f2192
commit
99903e1aba
3 changed files with 4 additions and 5 deletions
2
.github/workflows/go.yml
vendored
2
.github/workflows/go.yml
vendored
|
@ -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
|
||||
|
|
2
Makefile
2
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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue