diff --git a/src/server/requesters/GitHubActionsRequester.ts b/src/server/requesters/GitHubActionsRequester.ts index 4a743e1..d60089e 100644 --- a/src/server/requesters/GitHubActionsRequester.ts +++ b/src/server/requesters/GitHubActionsRequester.ts @@ -210,7 +210,10 @@ export class GitHubActionsRequester }; } - const claimsEvaluation = await this.doOpenIDConnectClaimsMatchProjectInternal(claims, project); + const claimsEvaluation = await this.doOpenIDConnectClaimsMatchProjectInternal( + claims.payload as jwt.JwtPayload, + project, + ); if (!claimsEvaluation.ok) { return { ok: false,