Add go1.18 to ci pipeline (#173)

This commit is contained in:
Michael Fridman 2022-03-18 07:15:45 -04:00 committed by GitHub
parent d489c99d3e
commit 1096e506e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- uses: reviewdog/action-staticcheck@v1
with:
github_token: ${{ secrets.github_token }}
@ -25,12 +25,12 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [1.15, 1.16, 1.17]
go: [1.16, 1.17, 1.18]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: "${{ matrix.go }}"
- name: Build

2
go.mod
View File

@ -1,3 +1,3 @@
module github.com/golang-jwt/jwt/v4
go 1.15
go 1.16