File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed
Expand file tree Collapse file tree 6 files changed +7
-7
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@v7
1919 - name : Run tests
2020 run : make test
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ module github.com/cloudlena/adapters
33go 1.24.1
44
55require (
6- github.com/golang-jwt/jwt/v4 v4.5.1
6+ github.com/golang-jwt/jwt/v5 v5.2.2
77 golang.org/x/oauth2 v0.28.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 =
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 =
33github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38 =
44github.com/google/go-cmp v0.5.9 /go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY =
55golang.org/x/oauth2 v0.28.0 h1:CrgCKl8PPAVtLnU3c+EDw6x11699EWlsDeWNWKdIOkc =
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