Skip to content

Commit 5a80cb1

Browse files
Merge pull request #746 from github/edoardo/2.6.2-release
Bump default CodeQL version to 2.6.2 bundle
2 parents 7112cda + 014d3ea commit 5a80cb1

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

.github/workflows/pr-checks.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
- name: Build code
172172
run: |
173173
. ./codeql-runner/codeql-env.sh
174-
$CODEQL_RUNNER dotnet build
174+
$CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false
175175
176176
- name: Run analyze
177177
run: |
@@ -211,7 +211,13 @@ jobs:
211211
run: |
212212
cat ./codeql-runner/codeql-env.sh | Invoke-Expression
213213
$Env:CODEQL_EXTRACTOR_CSHARP_ROOT = ""
214-
& $Env:CODEQL_RUNNER dotnet build
214+
& $Env:CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false
215+
216+
- name: Upload tracer logs
217+
uses: actions/upload-artifact@v2
218+
with:
219+
name: tracer-logs
220+
path: ./codeql-runner/compound-build-tracer.log
215221

216222
- name: Run analyze
217223
run: |
@@ -249,7 +255,7 @@ jobs:
249255
shell: bash
250256
run: |
251257
. ./codeql-runner/codeql-env.sh
252-
$CODEQL_RUNNER dotnet build
258+
$CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false
253259
254260
- name: Run analyze
255261
run: |

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [UNRELEASED]
44

5-
No user facing changes.
5+
- Update default CodeQL bundle version to 2.6.2. [#746](https://github.com/github/codeql-action/pull/746)
66

77
## 1.0.14 - 09 Sep 2021
88

lib/defaults.json

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

src/defaults.json

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

tests/multi-language-repo/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
gcc -o main main.c
44

5-
dotnet build
5+
dotnet build -p:UseSharedCompilation=false
66

77
javac Main.java
88

0 commit comments

Comments
 (0)