Skip to content

Commit

Permalink
Merge branch 'main' into aeisenberg/timeout-45-min
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Eisenberg authored and GitHub committed Mar 24, 2022
2 parents 5d72058 + c9973ef commit 686c3a3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ on:

jobs:
CodeQL-Build:
# If you're only analyzing JavaScript or Python, CodeQL runs on ubuntu-latest, windows-latest, and macos-latest.
# If you're analyzing C/C++, C#, Go, or Java, CodeQL runs on ubuntu-latest, windows-2019, and macos-latest.
# CodeQL runs on ubuntu-latest, windows-latest, and macos-latest
runs-on: ubuntu-latest

permissions:
Expand Down
2 changes: 1 addition & 1 deletion lib/actions-util.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/actions-util.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/actions-util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 686c3a3

Please sign in to comment.