Skip to content

Commit

Permalink
Add go1.18 to ci pipeline (golang-jwt#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfridman authored and oxisto committed Mar 29, 2023
1 parent 42eb419 commit 11636c8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Expand Up @@ -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 }}
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion go.mod
@@ -1,3 +1,3 @@
module github.com/golang-jwt/jwt/v4

go 1.15
go 1.16

0 comments on commit 11636c8

Please sign in to comment.