Skip to content

Commit 1096e50

Browse files
authored
Add go1.18 to ci pipeline (#173)
1 parent d489c99 commit 1096e50

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616
- uses: reviewdog/action-staticcheck@v1
1717
with:
1818
github_token: ${{ secrets.github_token }}
@@ -25,12 +25,12 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
go: [1.15, 1.16, 1.17]
28+
go: [1.16, 1.17, 1.18]
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v3
3232
- name: Setup Go
33-
uses: actions/setup-go@v2
33+
uses: actions/setup-go@v3
3434
with:
3535
go-version: "${{ matrix.go }}"
3636
- name: Build

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/golang-jwt/jwt/v4
22

3-
go 1.15
3+
go 1.16

0 commit comments

Comments
 (0)