Skip to content

Commit f8917e1

Browse files
committed
support 1.21, 1.22, 1.23 and remove 1.19, 1.20
Signed-off-by: Lize Cai <[email protected]>
1 parent a92c4a3 commit f8917e1

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/ci.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
strategy:
1212
matrix:
1313
go-version:
14+
- 1.23.x
1415
- 1.22.x
15-
- 1.20.x
16-
- 1.19.x
16+
- 1.21.x
1717
os:
1818
- macos
1919
- ubuntu
@@ -33,9 +33,9 @@ jobs:
3333
strategy:
3434
matrix:
3535
go-version:
36+
- 1.23.x
3637
- 1.22.x
37-
- 1.20.x
38-
- 1.19.x
38+
- 1.21.x
3939
os:
4040
- macos
4141
- ubuntu
@@ -69,8 +69,9 @@ jobs:
6969
strategy:
7070
matrix:
7171
go-version:
72+
- 1.23.x
7273
- 1.22.x
73-
- 1.20.x
74+
- 1.21.x
7475
os:
7576
- ubuntu
7677

.github/workflows/goreleaser.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-go@v2
1313
with:
14-
go-version: 1.22.x
14+
go-version: 1.23.x
1515
- run: make test_without_race
1616
env:
1717
S5CMD_ACCESS_KEY_ID: ${{ secrets.S5CMD_GCS_ACCESS_KEY_ID }}
@@ -34,7 +34,7 @@ jobs:
3434
name: Set up Go
3535
uses: actions/setup-go@v2
3636
with:
37-
go-version: '1.22'
37+
go-version: '1.23'
3838
-
3939
name: Run GoReleaser
4040
uses: goreleaser/goreleaser-action@v2

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22-alpine AS build
1+
FROM golang:1.23-alpine AS build
22
COPY . /s5cmd/
33
RUN apk add --no-cache git make && \
44
cd /s5cmd/ && \

0 commit comments

Comments
 (0)