Improve warning when using autobuild with multi-language builds

This commit is contained in:
Henry Mercer
2022-09-13 16:53:02 +01:00
parent 4cc95769d4
commit f32e161cdd
3 changed files with 9 additions and 3 deletions

View File

@@ -85,7 +85,11 @@ export async function determineAutobuildLanguages(
" and "
)} code. If you wish to scan ${autobuildLanguagesWithoutGo
.slice(1)
.join(" and ")}, you must replace this call with custom build steps.`
.join(
" and "
)}, you must replace the autobuild step of your workflow with custom build steps. ` +
"For more information, see " +
"https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-the-codeql-workflow-for-compiled-languages#adding-build-steps-for-a-compiled-language"
);
}