mirror of
https://github.com/github/codeql-action.git
synced 2026-01-01 20:20:07 +08:00
Status reporting: fix codeql_version field name
This commit is contained in:
@@ -611,7 +611,7 @@ export interface StatusReportBase {
|
||||
/** Action version (x.y.z from package.json). */
|
||||
action_version: string;
|
||||
/** CodeQL CLI version (x.y.z from the CLI). */
|
||||
codeql_cli_version?: string;
|
||||
codeql_version?: string;
|
||||
}
|
||||
|
||||
export function getActionsStatus(
|
||||
@@ -713,7 +713,7 @@ export async function createStatusReportBase(
|
||||
statusReport.runner_os_release = os.release();
|
||||
}
|
||||
if (codeQlCliVersion !== undefined) {
|
||||
statusReport.codeql_cli_version = codeQlCliVersion;
|
||||
statusReport.codeql_version = codeQlCliVersion;
|
||||
}
|
||||
|
||||
return statusReport;
|
||||
|
||||
Reference in New Issue
Block a user