1
0
Fork 0

comments resolved

pull/887/head
Sourav Chanduka 2021-08-19 10:49:39 +05:30
parent 1f8d7b5a64
commit 09e9478907
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ import * as fs from 'fs'
import * as os from 'os' import * as os from 'os'
import * as path from 'path' import * as path from 'path'
import * as core from '../src/core' import * as core from '../src/core'
import { HttpClient } from '@actions/http-client' import {HttpClient} from '@actions/http-client'
import {toCommandProperties} from '../src/utils' import {toCommandProperties} from '../src/utils'

View File

@ -351,6 +351,6 @@ export function getState(name: string): string {
return process.env[`STATE_${name}`] || '' return process.env[`STATE_${name}`] || ''
} }
export async function getIDToken(aud: string | undefined = undefined): Promise<string> { export async function getIDToken(aud?: string | undefined): Promise<string> {
return await OidcClient.getIDToken(aud) return await OidcClient.getIDToken(aud)
} }