You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The action does not work when using GitHub Enterprise Server (GHES) as Octokit's getLatestRelease will use the local server API instead of reaching out to GutHub.com for the latest release of mozilla/sccache and thus fail.
For this to work on GHES the baseUrl must be hardcoded to https://api.github.com when calling getOctokit in setup.ts:
The action does not work when using GitHub Enterprise Server (GHES) as Octokit's
getLatestRelease
will use the local server API instead of reaching out to GutHub.com for the latest release ofmozilla/sccache
and thus fail.For this to work on GHES the
baseUrl
must be hardcoded tohttps://api.github.com
when callinggetOctokit
insetup.ts
:Users of the action must provide the
token
parameter when calling the action, i.e.:(preferably obtaining the token using https://github.com/actions/create-github-app-token).
The text was updated successfully, but these errors were encountered: