Skip to content

Commit b7e896c

Browse files
liggittericchiang
authored andcommitted
Switch to maintained gopkg.in/go-jose/go-jose.v2 library
1 parent a571417 commit b7e896c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

jwks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"time"
1111

1212
"github.com/pquerna/cachecontrol"
13-
jose "gopkg.in/square/go-jose.v2"
13+
jose "gopkg.in/go-jose/go-jose.v2"
1414
)
1515

1616
// keysExpiryDelta is the allowed clock skew between a client and the OpenID Connect

jwks_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"testing"
1515
"time"
1616

17-
jose "gopkg.in/square/go-jose.v2"
17+
jose "gopkg.in/go-jose/go-jose.v2"
1818
)
1919

2020
type keyServer struct {

oidc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"time"
1919

2020
"golang.org/x/oauth2"
21-
jose "gopkg.in/square/go-jose.v2"
21+
jose "gopkg.in/go-jose/go-jose.v2"
2222
)
2323

2424
const (

verify.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"time"
1414

1515
"golang.org/x/oauth2"
16-
jose "gopkg.in/square/go-jose.v2"
16+
jose "gopkg.in/go-jose/go-jose.v2"
1717
)
1818

1919
const (

verify_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"testing"
1212
"time"
1313

14-
jose "gopkg.in/square/go-jose.v2"
14+
jose "gopkg.in/go-jose/go-jose.v2"
1515
)
1616

1717
type testVerifier struct {

0 commit comments

Comments
 (0)