Merge pull request #746 from github/edoardo/2.6.2-release

Bump default CodeQL version to 2.6.2 bundle
This commit is contained in:
Edoardo Pirovano 2021-09-21 17:59:41 +01:00 committed by GitHub
commit 5a80cb1408
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 7 deletions

View file

@ -171,7 +171,7 @@ jobs:
- name: Build code - name: Build code
run: | run: |
. ./codeql-runner/codeql-env.sh . ./codeql-runner/codeql-env.sh
$CODEQL_RUNNER dotnet build $CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false
- name: Run analyze - name: Run analyze
run: | run: |
@ -211,7 +211,13 @@ jobs:
run: | run: |
cat ./codeql-runner/codeql-env.sh | Invoke-Expression cat ./codeql-runner/codeql-env.sh | Invoke-Expression
$Env:CODEQL_EXTRACTOR_CSHARP_ROOT = "" $Env:CODEQL_EXTRACTOR_CSHARP_ROOT = ""
& $Env:CODEQL_RUNNER dotnet build & $Env:CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false
- name: Upload tracer logs
uses: actions/upload-artifact@v2
with:
name: tracer-logs
path: ./codeql-runner/compound-build-tracer.log
- name: Run analyze - name: Run analyze
run: | run: |
@ -249,7 +255,7 @@ jobs:
shell: bash shell: bash
run: | run: |
. ./codeql-runner/codeql-env.sh . ./codeql-runner/codeql-env.sh
$CODEQL_RUNNER dotnet build $CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false
- name: Run analyze - name: Run analyze
run: | run: |

View file

@ -2,7 +2,7 @@
## [UNRELEASED] ## [UNRELEASED]
No user facing changes. - Update default CodeQL bundle version to 2.6.2. [#746](https://github.com/github/codeql-action/pull/746)
## 1.0.14 - 09 Sep 2021 ## 1.0.14 - 09 Sep 2021

View file

@ -1,3 +1,3 @@
{ {
"bundleVersion": "codeql-bundle-20210909" "bundleVersion": "codeql-bundle-20210921"
} }

View file

@ -1,3 +1,3 @@
{ {
"bundleVersion": "codeql-bundle-20210909" "bundleVersion": "codeql-bundle-20210921"
} }

View file

@ -2,7 +2,7 @@
gcc -o main main.c gcc -o main main.c
dotnet build dotnet build -p:UseSharedCompilation=false
javac Main.java javac Main.java