File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/java/dev/sigstore/oidc/client Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ dependencies {
40
40
implementation(" org.bouncycastle:bcutil-jdk18on:1.77" )
41
41
implementation(" org.bouncycastle:bcpkix-jdk18on:1.77" )
42
42
43
- implementation(platform(" com.google.oauth-client:google-oauth-client-bom:1.34.1 " ))
43
+ implementation(platform(" com.google.oauth-client:google-oauth-client-bom:1.35.0 " ))
44
44
implementation(" com.google.oauth-client:google-oauth-client" )
45
45
implementation(" com.google.oauth-client:google-oauth-client-jetty" )
46
46
implementation(" com.google.oauth-client:google-oauth-client-java6" )
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ public OidcToken getIDToken() throws OidcException {
171
171
.setIssuer (issuer )
172
172
.setCertificatesLocation (endpoints .getJwksUri ())
173
173
.build ();
174
- if (!idTokenVerifier .verify (parsedIdToken )) {
174
+ if (!idTokenVerifier .verifyOrThrow (parsedIdToken )) {
175
175
throw new OidcException ("id token could not be verified" );
176
176
}
177
177
} catch (IOException e ) {
You can’t perform that action at this time.
0 commit comments