Skip to content

Commit 770ad62

Browse files
committed
chore: deprecated go 1.16
1 parent d860ec4 commit 770ad62

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
build:
55
strategy:
66
matrix:
7-
go-version: [1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.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:
@@ -26,7 +26,7 @@ jobs:
2626
needs: test
2727
strategy:
2828
matrix:
29-
go-version: [1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.x]
29+
go-version: [1.17.x, 1.18.x, 1.19.x, 1.20.x]
3030
os: [ubuntu-latest, macos-latest, windows-latest]
3131
runs-on: ${{ matrix.os }}
3232
steps:

go.mod

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
module github.com/fasthttp/router
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/savsgio/gotils v0.0.0-20230208104028-c358bd845dee
77
github.com/valyala/bytebufferpool v1.0.0
88
github.com/valyala/fasthttp v1.45.0
99
)
10+
11+
require (
12+
github.com/andybalholm/brotli v1.0.5 // indirect
13+
github.com/klauspost/compress v1.16.3 // indirect
14+
)

0 commit comments

Comments
 (0)