Hide an warning that is confusing on GHES

This commit is contained in:
Simon Engledew 2020-12-01 16:54:23 +00:00
parent e6174fc6cf
commit f3c9aee686
No known key found for this signature in database
GPG key ID: 84302E7B02FE8BCE
3 changed files with 5 additions and 5 deletions

View file

@ -560,11 +560,11 @@ export async function sendStatusReport<S extends StatusReportBase>(
// this means that this action version is no longer compatible with the API
// we still want to continue as it is likely the analysis endpoint will work
if (getRequiredEnvParam("GITHUB_SERVER_URL") !== GITHUB_DOTCOM_URL) {
core.warning(
core.debug(
"CodeQL Action version is incompatible with the code scanning endpoint. Please update to a compatible version of codeql-action."
);
} else {
core.warning(
core.debug(
"CodeQL Action is out-of-date. Please upgrade to the latest version of codeql-action."
);
}