Fix use of wrong URL

This commit is contained in:
Robert Brignull 2020-08-26 13:26:36 +01:00
parent 3ffe4b7421
commit f5d645fc73
19 changed files with 19 additions and 34 deletions

View file

@ -51,6 +51,6 @@ function parseAuth(auth: string): string {
export function getActionsApiClient(allowLocalRun = false) {
return getApiClient(
core.getInput('token'),
getRequiredEnvParam('GITHUB_API_URL'),
getRequiredEnvParam('GITHUB_SERVER_URL'),
allowLocalRun);
}