File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 14
14
uses : actions/checkout@master
15
15
with :
16
16
# checkout HEAD commit instead of merge commit
17
- ref : ${{ github.event.pull_request.head.sha }}
17
+ ref : ${{ github.event.pull_request.head.ref }}
18
18
token : ${{ github.token }}
19
19
- name : Set up Node (14)
20
20
uses : actions/setup-node@v2
Original file line number Diff line number Diff line change @@ -754,7 +754,7 @@ export interface TotpMultiFactorAssertion extends MultiFactorAssertion {
754
754
export class TotpMultiFactorGenerator {
755
755
static assertionForEnrollment(secret : TotpSecret , oneTimePassword : string ): TotpMultiFactorAssertion ;
756
756
static assertionForSignIn(enrollmentId : string , oneTimePassword : string ): TotpMultiFactorAssertion ;
757
- static FACTOR_ID: " totp" ;
757
+ static FACTOR_ID: ' totp' ;
758
758
static generateSecret(session : MultiFactorSession ): Promise <TotpSecret >;
759
759
}
760
760
You can’t perform that action at this time.
0 commit comments