deps: upgrade to go-jose v3 (#2284)

This commit is contained in:
Caleb Doxsey 2021-06-10 09:35:44 -06:00 committed by GitHub
parent 5813487cfc
commit f9675f61cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
26 changed files with 34 additions and 34 deletions

View file

@ -10,13 +10,13 @@ import (
"strings"
"time"
"github.com/go-jose/go-jose/v3/jwt"
"github.com/google/uuid"
"github.com/gorilla/mux"
"github.com/pomerium/csrf"
"github.com/rs/cors"
"golang.org/x/oauth2"
"google.golang.org/protobuf/types/known/timestamppb"
"gopkg.in/square/go-jose.v2/jwt"
"github.com/pomerium/pomerium/internal/httputil"
"github.com/pomerium/pomerium/internal/identity"

View file

@ -13,6 +13,7 @@ import (
"testing"
"time"
"github.com/go-jose/go-jose/v3/jwt"
"github.com/golang/mock/gomock"
"github.com/golang/protobuf/ptypes"
"github.com/golang/protobuf/ptypes/empty"
@ -23,7 +24,6 @@ import (
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"gopkg.in/square/go-jose.v2/jwt"
"github.com/pomerium/pomerium/config"
"github.com/pomerium/pomerium/internal/encoding"

View file

@ -8,7 +8,7 @@ import (
"net/url"
"sync/atomic"
"gopkg.in/square/go-jose.v2"
"github.com/go-jose/go-jose/v3"
"github.com/pomerium/pomerium/config"
"github.com/pomerium/pomerium/internal/encoding"