mirror of
https://github.com/actions/checkout.git
synced 2026-01-20 07:38:53 +08:00
restore passing baseUrl where appropriate
This commit is contained in:
parent
df4b58c789
commit
2f42443dda
3 changed files with 39 additions and 15 deletions
|
|
@ -88,7 +88,7 @@ export async function getDefaultBranch(
|
|||
return await retryHelper.execute(async () => {
|
||||
core.info('Retrieving the default branch name')
|
||||
const octokit = github.getOctokit(authToken, {
|
||||
baseUrl: getServerApiUrl()
|
||||
baseUrl: getServerApiUrl(baseUrl)
|
||||
})
|
||||
let result: string
|
||||
try {
|
||||
|
|
@ -131,7 +131,7 @@ async function downloadArchive(
|
|||
baseUrl?: string
|
||||
): Promise<Buffer> {
|
||||
const octokit = github.getOctokit(authToken, {
|
||||
baseUrl: getServerApiUrl()
|
||||
baseUrl: getServerApiUrl(baseUrl)
|
||||
})
|
||||
const download = IS_WINDOWS
|
||||
? octokit.rest.repos.downloadZipballArchive
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue