From 1096e506e671d6d6fe134cc997bbd475937392c8 Mon Sep 17 00:00:00 2001 From: Michael Fridman Date: Fri, 18 Mar 2022 07:15:45 -0400 Subject: [PATCH] Add go1.18 to ci pipeline (#173) --- .github/workflows/build.yml | 8 ++++---- go.mod | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4b6fcd07..3fce11e6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/go.mod b/go.mod index 6bc53fdc..5873e3a4 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/golang-jwt/jwt/v4 -go 1.15 +go 1.16