Use failure instead of aborted

This commit is contained in:
Michael B. Gale
2025-10-16 19:05:03 +01:00
parent 2611d033d7
commit 000295122d
2 changed files with 2 additions and 2 deletions

View File

@@ -157,7 +157,7 @@ async function run(): Promise<void> {
core.setFailed(error.message);
const statusReportBase = await createStatusReportBase(
ActionName.SetupCodeQL,
error instanceof ConfigurationError ? "user-error" : "aborted",
error instanceof ConfigurationError ? "user-error" : "failure",
startedAt,
undefined,
await checkDiskUsage(logger),