Skip to content

Commit

Permalink
Showing 7 changed files with 6 additions and 30 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/pr-checks.yml
@@ -370,9 +370,6 @@ jobs:
run: |
../action/runner/dist/codeql-runner-macos init --repository $GITHUB_REPOSITORY --languages csharp --github-url $GITHUB_SERVER_URL --github-auth ${{ github.token }}
- name: Initialize dotnet
run: dotnet restore

- name: Build code
shell: bash
run: |
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -2,7 +2,7 @@

## [UNRELEASED]

- Update default CodeQL bundle version to 2.7.3. [#837](https://github.com/github/codeql-action/pull/837)
No user facing changes.

## 1.0.25 - 06 Dec 2021

13 changes: 1 addition & 12 deletions lib/codeql.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/codeql.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/defaults.json
@@ -1,3 +1,3 @@
{
"bundleVersion": "codeql-bundle-20211207"
"bundleVersion": "codeql-bundle-20211122"
}
12 changes: 1 addition & 11 deletions src/codeql.ts
@@ -732,17 +732,7 @@ async function getCodeQLForCmd(
"-Dmaven.wagon.http.pool=false",
].join(" ");

const runnerExecutable = process.env["CODEQL_RUNNER"] || "";
// On Mac, prefixing with the runner executable is required to handle System Integrity Protection.
if (runnerExecutable) {
// Earlier steps (init) are expected to have written the runner executable path
// to the tracing environment, and the current step is expected to have
// correctly loaded that environment.
await runTool(runnerExecutable, [autobuildCmd]);
} else {
// Fallback in case CODEQL_RUNNER wasn't correctly set or loaded.
await runTool(autobuildCmd);
}
await runTool(autobuildCmd);
},
async extractScannedLanguage(databasePath: string, language: Language) {
// Get extractor location
2 changes: 1 addition & 1 deletion src/defaults.json
@@ -1,3 +1,3 @@
{
"bundleVersion": "codeql-bundle-20211207"
"bundleVersion": "codeql-bundle-20211122"
}

0 comments on commit a8cf6f4

Please sign in to comment.