forked from TrueCloudLab/frostfs-s3-gw
[#694] Update go version to 1.19
Signed-off-by: Denis Kirillov <denis@nspcc.ru>
This commit is contained in:
parent
96c7b79d1c
commit
0bd7d4da2f
5 changed files with 7 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
FROM golang:1.17 as builder
|
FROM golang:1.19 as builder
|
||||||
|
|
||||||
ARG BUILD=now
|
ARG BUILD=now
|
||||||
ARG REPO=github.com/nspcc-dev/neofs-s3-gw
|
ARG REPO=github.com/nspcc-dev/neofs-s3-gw
|
||||||
|
|
4
.github/workflows/builds.yml
vendored
4
.github/workflows/builds.yml
vendored
|
@ -21,7 +21,7 @@ jobs:
|
||||||
- name: Setup Go
|
- name: Setup Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.17
|
go-version: 1.19
|
||||||
|
|
||||||
- name: Restore Go modules from cache
|
- name: Restore Go modules from cache
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
|
@ -60,7 +60,7 @@ jobs:
|
||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.17
|
go-version: 1.19
|
||||||
|
|
||||||
- name: Restore Go modules from cache
|
- name: Restore Go modules from cache
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
|
|
4
.github/workflows/tests.yml
vendored
4
.github/workflows/tests.yml
vendored
|
@ -38,7 +38,7 @@ jobs:
|
||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.17
|
go-version: 1.19
|
||||||
|
|
||||||
- name: Restore Go modules from cache
|
- name: Restore Go modules from cache
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
|
@ -67,7 +67,7 @@ jobs:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
go_versions: [ '1.17.x', '1.18.x' ]
|
go_versions: [ '1.18.x', '1.19.x' ]
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
|
@ -9,6 +9,7 @@ This document outlines major changes between releases.
|
||||||
- Configuration of `set_copies_number` (#634, #637)
|
- Configuration of `set_copies_number` (#634, #637)
|
||||||
### Changed
|
### Changed
|
||||||
- Improved wallet configuration via `.yaml` config and environment variables (#607)
|
- Improved wallet configuration via `.yaml` config and environment variables (#607)
|
||||||
|
- Update go version for build to 1.19 (#694)
|
||||||
### Removed
|
### Removed
|
||||||
### Fixed
|
### Fixed
|
||||||
- Responses to `GetObject` and `HeadObject`: removed redundant `VersionID` (#577)
|
- Responses to `GetObject` and `HeadObject`: removed redundant `VersionID` (#577)
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -3,7 +3,7 @@
|
||||||
# Common variables
|
# Common variables
|
||||||
REPO ?= $(shell go list -m)
|
REPO ?= $(shell go list -m)
|
||||||
VERSION ?= $(shell git describe --tags --dirty --match "v*" --always 2>/dev/null || cat VERSION 2>/dev/null || echo "develop")
|
VERSION ?= $(shell git describe --tags --dirty --match "v*" --always 2>/dev/null || cat VERSION 2>/dev/null || echo "develop")
|
||||||
GO_VERSION ?= 1.17
|
GO_VERSION ?= 1.19
|
||||||
LINT_VERSION ?= 1.46.2
|
LINT_VERSION ?= 1.46.2
|
||||||
BINDIR = bin
|
BINDIR = bin
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue