Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge main into v1 #922

Merged
merged 22 commits into from Feb 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2890d30
Update changelog and version after v1.0.32
invalid-email-address Feb 7, 2022
b870f13
1.0.33
invalid-email-address Feb 7, 2022
f960720
Update checked-in dependencies
invalid-email-address Feb 7, 2022
edd03fb
Merge pull request #914 from github/mergeback/v1.0.32-to-main-2b46439d
cklin Feb 7, 2022
b8047e5
Use `windows-2019` for CI jobs involving build tracing
henrymercer Feb 8, 2022
8dd2b9a
Fix typo in Python package installation CI job
henrymercer Feb 8, 2022
34c777f
Use Node.js v16 in all Actions
henrymercer Feb 3, 2022
c72c200
Upgrade Node type definitions
henrymercer Feb 3, 2022
8768b0f
Remove stub type definitions
henrymercer Feb 3, 2022
8e2954c
Bump to v1.1.0
henrymercer Feb 3, 2022
8f27994
Add changelog note
henrymercer Feb 3, 2022
a777a98
Merge pull request #917 from github/henrymercer/fix-windows-latest-ci…
henrymercer Feb 8, 2022
eb172af
Merge branch 'main' into henrymercer/bump-node-js-to-v16
henrymercer Feb 8, 2022
88073a5
Merge pull request #909 from github/henrymercer/bump-node-js-to-v16
henrymercer Feb 8, 2022
70e63f4
Bump simple-get from 3.1.0 to 3.1.1 in /runner
dependabot[bot] Feb 8, 2022
f2027c5
Merge pull request #916 from github/dependabot/npm_and_yarn/runner/si…
henrymercer Feb 8, 2022
a6d606b
Update changelog and README with build tracing compatibility info
henrymercer Feb 8, 2022
87bfa0e
Rename ML powered JS queries status report field
henrymercer Feb 9, 2022
7f9dca2
Merge pull request #918 from github/henrymercer/windows-2022-tracing-…
henrymercer Feb 9, 2022
7e15b96
Merge branch 'main' into henrymercer/rename-status-report-field
henrymercer Feb 9, 2022
3d2ad0b
Merge pull request #919 from github/henrymercer/rename-status-report-…
henrymercer Feb 10, 2022
58f66fa
1.1.0
invalid-email-address Feb 11, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/__analyze-ref-input.yml

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

5 changes: 1 addition & 4 deletions .github/workflows/__go-custom-queries.yml

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

5 changes: 1 addition & 4 deletions .github/workflows/__go-custom-tracing.yml

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

5 changes: 1 addition & 4 deletions .github/workflows/__remote-config.yml

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

5 changes: 1 addition & 4 deletions .github/workflows/__upload-ref-sha-input.yml

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

8 changes: 6 additions & 2 deletions .github/workflows/pr-checks.yml
Expand Up @@ -182,7 +182,9 @@ jobs:
runner-analyze-csharp-windows:
name: Runner windows C# analyze
needs: [check-js, check-node-modules]
runs-on: windows-latest
# Build tracing currently does not support Windows 2022, so use `windows-2019` instead of
# `windows-latest`.
runs-on: windows-2019

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -301,7 +303,9 @@ jobs:
runner-analyze-csharp-autobuild-windows:
name: Runner windows autobuild C# analyze
needs: [check-js, check-node-modules]
runs-on: windows-latest
# Build tracing currently does not support Windows 2022, so use `windows-2019` instead of
# `windows-latest`.
runs-on: windows-2019

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-deps.yml
Expand Up @@ -125,7 +125,7 @@ jobs:

- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ matrix.python_version }}

- name: Initialize CodeQL
uses: ./init
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,10 @@
# CodeQL Action and CodeQL Runner Changelog

## 1.1.0 - 11 Feb 2022

- The CodeQL Action now uses Node.js v16. [#909](https://github.com/github/codeql-action/pull/909)
- Beware that the CodeQL build tracer in this release (and in all earlier releases) is incompatible with Windows 11 and Windows Server 2022. This incompatibility affects database extraction for compiled languages: cpp, csharp, go, and java. As a result, analyzing these languages with the `windows-latest` or `windows-2022` Actions virtual environments is currently unsupported. If you use any of these languages, please use the `windows-2019` Actions virtual environment or otherwise avoid these specific Windows versions until a new release fixes this incompatibility.

## 1.0.32 - 07 Feb 2022

- Add `sarif-id` as an output for the `upload-sarif` and `analyze` actions. [#889](https://github.com/github/codeql-action/pull/889)
Expand Down
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -39,7 +39,8 @@ on:

jobs:
CodeQL-Build:
# CodeQL runs on ubuntu-latest, windows-latest, and macos-latest
# 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.
runs-on: ubuntu-latest

permissions:
Expand Down
2 changes: 1 addition & 1 deletion analyze/action.yml
Expand Up @@ -72,5 +72,5 @@ outputs:
sarif-id:
description: The ID of the uploaded SARIF file.
runs:
using: "node12"
using: "node16"
main: "../lib/analyze-action.js"
2 changes: 1 addition & 1 deletion autobuild/action.yml
Expand Up @@ -7,5 +7,5 @@ inputs:
matrix:
default: ${{ toJson(matrix) }}
runs:
using: 'node12'
using: 'node16'
main: '../lib/autobuild-action.js'
2 changes: 1 addition & 1 deletion init/action.yml
Expand Up @@ -73,5 +73,5 @@ outputs:
codeql-path:
description: The path of the CodeQL binary used for analysis
runs:
using: 'node12'
using: 'node16'
main: '../lib/init-action.js'
2 changes: 1 addition & 1 deletion lib/init-action.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/init-action.js.map

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