1
Fork 0
mirror of https://gitea.com/actions/checkout.git synced 2024-11-14 04:35:56 +01:00
Commit graph

1 commit

Author SHA1 Message Date
ZauberNerd
590916fc5e
Pass correct baseUrl to octokit
The PR #1246 replaced the `getOctokit` method from the
`octokit-provider.ts` file with the `getOctokit` method from the
`@actions/github` package.
The octokit-provider was previously responsible for creating an Octokit
instance and setting the `baseUrl` via the `getServerApiUrl` helper
function. This function calls `getServerUrl` which reads the server url
from the `GITHUB_SERVER_URL` environment variable, which on GHES is set
to the enterprise instance.
This commit restores the previous behaviour by calling `getServerApiUrl`
in all places where an octokit instance is created.

Co-authored-by: Markus Wolf <mail@markus-wolf.de>
2023-04-13 14:10:01 +02:00