Skip to content

Commit 33c8cb5

Browse files
committed
chore: deprecate Go 1.15 and 1.16 and add support to 1.20
1 parent c31efd4 commit 33c8cb5

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
build:
55
strategy:
66
matrix:
7-
go-version: [1.15.x, 1.16.x, 1.17.x, 1.18.x, 1.19.x]
7+
go-version: [1.17.x, 1.18.x, 1.19.x, 1.20.x]
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v3

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.15.x, 1.16.x, 1.17.x, 1.18.x, 1.19.x]
7+
go-version: [1.17.x, 1.18.x, 1.19.x, 1.20.x]
88
os: [ubuntu-latest, macos-latest, windows-latest]
99
runs-on: ${{ matrix.os }}
1010
steps:

go.mod

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
module github.com/atreugo/requestid
22

3-
go 1.15
3+
go 1.17
44

55
require (
66
github.com/savsgio/atreugo/v11 v11.9.7
77
github.com/savsgio/gotils v0.0.0-20220530130905-52f3993e8d6d
88
github.com/valyala/fasthttp v1.40.0
99
)
10+
11+
require (
12+
github.com/andybalholm/brotli v1.0.4 // indirect
13+
github.com/fasthttp/router v1.4.12 // indirect
14+
github.com/google/uuid v1.3.0 // indirect
15+
github.com/klauspost/compress v1.15.0 // indirect
16+
github.com/valyala/bytebufferpool v1.0.0 // indirect
17+
github.com/valyala/tcplisten v1.0.0 // indirect
18+
golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9 // indirect
19+
)

0 commit comments

Comments
 (0)