Skip to content

Commit 0c670bb

Browse files
authored
Merge pull request #1153 from github/update-v2.1.17-bbc2e701
Merge main into releases/v2
2 parents 3e7e3b3 + 0dd6a6f commit 0c670bb

19 files changed

+338
-53
lines changed

.github/workflows/__autobuild-action.yml

+72
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/pr-checks.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,10 @@ jobs:
414414
- name: Build code
415415
shell: bash
416416
run: |
417-
../action/runner/dist/codeql-runner-macos autobuild
417+
. codeql-runner/codeql-env.sh
418+
CODEQL_RUNNER="$(cat codeql-runner/codeql-env.json | jq -r '.CODEQL_RUNNER')"
419+
echo "$CODEQL_RUNNER"
420+
$CODEQL_RUNNER ../action/runner/dist/codeql-runner-macos autobuild
418421
419422
- name: Run analyze
420423
run: |

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CodeQL Action Changelog
22

3+
## 2.1.17 - 28 Jul 2022
4+
5+
- Update default CodeQL bundle version to 2.10.1. [#1143](https://github.com/github/codeql-action/pull/1143)
6+
37
## 2.1.16 - 13 Jul 2022
48

59
- You can now quickly debug a job that uses the CodeQL Action by re-running the job from the GitHub UI and selecting the "Enable debug logging" option. [#1132](https://github.com/github/codeql-action/pull/1132)

lib/codeql.js

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/codeql.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/defaults.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"bundleVersion": "codeql-bundle-20220623"
2+
"bundleVersion": "codeql-bundle-20220714"
33
}

lib/feature-flags.js

+7-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/feature-flags.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/feature-flags.test.js

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/feature-flags.test.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeql",
3-
"version": "2.1.16",
3+
"version": "2.1.17",
44
"private": true,
55
"description": "CodeQL action",
66
"scripts": {

pr-checks/checks/autobuild-action.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "autobuild-action"
2+
description: "Tests that the C# autobuild action works"
3+
versions: ["latest"]
4+
steps:
5+
- uses: ./../action/init
6+
with:
7+
languages: csharp
8+
tools: ${{ steps.prepare-test.outputs.tools-url }}
9+
- uses: ./../action/autobuild
10+
env:
11+
# Explicitly disable the CLR tracer.
12+
COR_ENABLE_PROFILING: ""
13+
COR_PROFILER: ""
14+
COR_PROFILER_PATH_64: ""
15+
CORECLR_ENABLE_PROFILING: ""
16+
CORECLR_PROFILER: ""
17+
CORECLR_PROFILER_PATH_64: ""
18+
- uses: ./../action/analyze
19+
env:
20+
TEST_MODE: true
21+
- name: Check database
22+
shell: bash
23+
run: |
24+
cd "$RUNNER_TEMP/codeql_databases"
25+
if [[ ! -d csharp ]]; then
26+
echo "Did not find a C# database"
27+
exit 1
28+
fi

0 commit comments

Comments
 (0)