Skip to content

Commit 720281b

Browse files
committed
go.mod: Bump min required Go to 1.23
Update GitHub workflows too. Refs #979. Signed-off-by: Leonard Lyubich <leonard@morphbits.io>
1 parent 04b2c71 commit 720281b

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23-alpine as builder
1+
FROM golang:1.24-alpine as builder
22

33
ARG BUILD=now
44
ARG REPO=github.com/nspcc-dev/neofs-s3-gw

.github/workflows/builds.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
uses: actions/setup-go@v5
5555
with:
5656
cache: true
57-
go-version: '1.23'
57+
go-version: '1.24'
5858

5959
- name: Get tree-service client
6060
run: make sync-tree

.github/workflows/s3-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
uses: actions/setup-go@v5
118118
with:
119119
cache: true
120-
go-version: '1.23'
120+
go-version: '1.24'
121121
- run: go version
122122

123123
- name: Set up Python

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
uses: actions/setup-go@v5
4747
with:
4848
cache: true
49-
go-version: '1.23'
49+
go-version: '1.24'
5050

5151
- name: Get tree-service client
5252
run: make sync-tree
@@ -66,7 +66,7 @@ jobs:
6666
runs-on: ubuntu-22.04
6767
strategy:
6868
matrix:
69-
go_versions: [ '1.22', '1.23' ]
69+
go_versions: [ '1.23', '1.24' ]
7070
fail-fast: false
7171
steps:
7272
- uses: actions/checkout@v4

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Common variables
44
REPO ?= $(shell go list -m)
55
VERSION ?= $(shell git describe --tags --dirty --match "v*" --always --abbrev=8 | sed 's/^v//' 2>/dev/null || cat VERSION 2>/dev/null || echo "develop")
6-
GO_VERSION ?= 1.22
6+
GO_VERSION ?= 1.23
77
LINT_VERSION ?= 1.59.0
88
BINDIR = bin
99

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/nspcc-dev/neofs-s3-gw
22

3-
go 1.22
3+
go 1.23
44

55
require (
66
github.com/aws/aws-sdk-go v1.55.5

0 commit comments

Comments
 (0)