Skip to content

Commit

Permalink
GH-400, GH-401 Upgrading JWT Library to V4
Browse files Browse the repository at this point in the history
Adding 1.16.x and 1.17.x tests to matrix

updated to go 1.15 min
  • Loading branch information
benjivesterby committed Sep 30, 2021
1 parent cd21164 commit 0f2d8b8
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/testing.yml
Expand Up @@ -11,15 +11,15 @@ jobs:
name: Test and lint
strategy:
matrix:
go-version: [1.x, 1.15.x, 1.14.x]
go-version: [1.15.x, 1.16.x, 1.17.x]
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.14
go-version: ${{ matrix.go-version }}

# Caching go modules to speed up the run
- uses: actions/cache@v2
Expand Down
6 changes: 3 additions & 3 deletions go.mod
@@ -1,12 +1,12 @@
module github.com/andygrunwald/go-jira

go 1.12
go 1.15

require (
github.com/fatih/structs v1.1.0
github.com/golang-jwt/jwt v3.2.1+incompatible
github.com/golang-jwt/jwt/v4 v4.1.0
github.com/google/go-cmp v0.5.6
github.com/google/go-querystring v0.0.0-20170111101155-53e6ce116135
github.com/google/go-querystring v1.1.0
github.com/pkg/errors v0.9.1
github.com/trivago/tgo v1.0.7
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d
Expand Down
9 changes: 5 additions & 4 deletions go.sum
@@ -1,11 +1,12 @@
github.com/fatih/structs v1.1.0 h1:Q7juDM0QtcnhCpeyLGQKyg4TOIghuNXrkL32pHAUMxo=
github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M=
github.com/golang-jwt/jwt v3.2.1+incompatible h1:73Z+4BJcrTC+KczS6WvTPvRGOp1WmfEP4Q1lOd9Z/+c=
github.com/golang-jwt/jwt v3.2.1+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I=
github.com/golang-jwt/jwt/v4 v4.1.0 h1:XUgk2Ex5veyVFVeLm0xhusUTQybEbexJXrvPNOKkSY0=
github.com/golang-jwt/jwt/v4 v4.1.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg=
github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.6 h1:BKbKCqvP6I+rmFHt06ZmyQtvB8xAkWdhFyr0ZUNZcxQ=
github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-querystring v0.0.0-20170111101155-53e6ce116135 h1:zLTLjkaOFEFIOxY5BWLFLwh+cL8vOBW4XJ2aqLE/Tf0=
github.com/google/go-querystring v0.0.0-20170111101155-53e6ce116135/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck=
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/trivago/tgo v1.0.7 h1:uaWH/XIy9aWYWpjm2CU3RpcqZXmX2ysQ9/Go+d9gyrM=
Expand Down
2 changes: 1 addition & 1 deletion jira.go
Expand Up @@ -15,7 +15,7 @@ import (
"strings"
"time"

"github.com/golang-jwt/jwt"
jwt "github.com/golang-jwt/jwt/v4"
"github.com/google/go-querystring/query"
"github.com/pkg/errors"
)
Expand Down
1 change: 1 addition & 0 deletions request_context.go
@@ -1,3 +1,4 @@
//go:build go1.13
// +build go1.13

// This file provides glue to use Context in `http.Request` with
Expand Down
1 change: 1 addition & 0 deletions request_legacy.go
@@ -1,3 +1,4 @@
//go:build !go1.13
// +build !go1.13

// This file provides glue to use Context in `http.Request` with
Expand Down

0 comments on commit 0f2d8b8

Please sign in to comment.