File tree Expand file tree Collapse file tree 6 files changed +11
-13
lines changed
Expand file tree Collapse file tree 6 files changed +11
-13
lines changed Original file line number Diff line number Diff line change 1515 - name : Checkout repo
1616 uses : actions/checkout@v4
1717 - name : Lint code
18- uses : golangci/golangci-lint-action@v6
18+ uses : golangci/golangci-lint-action@v8
1919 - name : Run tests
2020 run : make test
Original file line number Diff line number Diff line change 11module github.com/cloudlena/adapters
22
3- go 1.24.1
3+ go 1.24.3
44
55require (
6- github.com/golang-jwt/jwt/v4 v4.5.1
7- golang.org/x/oauth2 v0.28 .0
6+ github.com/golang-jwt/jwt/v5 v5.2.2
7+ golang.org/x/oauth2 v0.30 .0
88)
Original file line number Diff line number Diff line change 1- github.com/golang-jwt/jwt/v4 v4.5.1 h1:JdqV9zKUdtaa9gdPlywC3aeoEsR681PlKC+4F5gQgeo =
2- github.com/golang-jwt/jwt/v4 v4.5.1 /go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0 =
3- github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38 =
4- github.com/google/go-cmp v0.5.9 /go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY =
5- golang.org/x/oauth2 v0.28.0 h1:CrgCKl8PPAVtLnU3c+EDw6x11699EWlsDeWNWKdIOkc =
6- golang.org/x/oauth2 v0.28.0 /go.mod h1:onh5ek6nERTohokkhCD/y2cV4Do3fxFHFuAejCkRWT8 =
1+ github.com/golang-jwt/jwt/v5 v5.2.2 h1:Rl4B7itRWVtYIHFrSNd7vhTiz9UpLdi6gZhZ3wEeDy8 =
2+ github.com/golang-jwt/jwt/v5 v5.2.2 /go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk =
3+ golang.org/x/oauth2 v0.30.0 h1:dnDm7JmhM45NNpd8FDDeLhK6FwqbOf4MLCM9zb1BOHI =
4+ golang.org/x/oauth2 v0.30.0 /go.mod h1:B++QgG3ZKulg6sRPGD/mqlHQs5rB3Ml9erfeDY7xKlU =
Original file line number Diff line number Diff line change 55 "net/http"
66 "strings"
77
8- "github.com/golang-jwt/jwt/v4 "
8+ "github.com/golang-jwt/jwt/v5 "
99)
1010
1111// CheckTokenHandler checks if a request is authenticated through OAuth2.
Original file line number Diff line number Diff line change 77 "net/http"
88 "time"
99
10- "github.com/golang-jwt/jwt/v4 "
10+ "github.com/golang-jwt/jwt/v5 "
1111)
1212
1313// expirationClaimKey is the key under which the expiration will be saved.
Original file line number Diff line number Diff line change 11package oauth2
22
33import (
4- "github.com/golang-jwt/jwt/v4 "
4+ "github.com/golang-jwt/jwt/v5 "
55 oa2 "golang.org/x/oauth2"
66)
77
You can’t perform that action at this time.
0 commit comments