Skip to content

Commit

Permalink
chore: deprecate Go 1.17 and 1.18 and add support to 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
savsgio committed Nov 17, 2023
1 parent b486c6a commit b8eae2e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
build:
strategy:
matrix:
go-version: [1.17.x, 1.18.x, 1.19.x, 1.20.x]
go-version: [1.19.x, 1.20.x, 1.21.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
go-version: [1.17.x, 1.18.x, 1.19.x, 1.20.x]
go-version: [1.19.x, 1.20.x, 1.21.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/fasthttp/session/v2

go 1.17
go 1.19

require (
github.com/bradfitz/gomemcache v0.0.0-20230905024940-24af94b03874
Expand Down

0 comments on commit b8eae2e

Please sign in to comment.