Skip to content

Commit 20546fe

Browse files
authored
Merge branch 'github:main' into main
2 parents 51fe4cc + d354b0c commit 20546fe

2,867 files changed

Lines changed: 171112 additions & 68865 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/copilot-instructions.md

Lines changed: 0 additions & 4 deletions
This file was deleted.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
applyTo: "**/*.expected"
3+
---
4+
Ignore these files. These are generated to be correct by running the tests, and should not be edited manually.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
applyTo: "**/*.ql,**/*.qll"
3+
---
4+
When reviewing these QL files, do not make any comment on the code itself. You don't understand the QL programming language well enough yet. You can only make comments about the following aspects:
5+
* comments (lines starting with `//` or block comments enclosed in `/* ... */`): you can suggest improvements to the clarity of comments, or point out spelling mistakes
6+
* typos in identifiers

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Setup dotnet
3535
uses: actions/setup-dotnet@v4
3636
with:
37-
dotnet-version: 9.0.100
37+
dotnet-version: 9.0.300
3838

3939
- name: Checkout repository
4040
uses: actions/checkout@v5

.github/workflows/csharp-qltest.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ jobs:
4343
- name: Setup dotnet
4444
uses: actions/setup-dotnet@v4
4545
with:
46-
dotnet-version: 9.0.100
46+
dotnet-version: 9.0.300
4747
- name: Extractor unit tests
4848
run: |
4949
dotnet tool restore
50-
dotnet test -p:RuntimeFrameworkVersion=9.0.0 extractor/Semmle.Util.Tests
51-
dotnet test -p:RuntimeFrameworkVersion=9.0.0 extractor/Semmle.Extraction.Tests
52-
dotnet test -p:RuntimeFrameworkVersion=9.0.0 autobuilder/Semmle.Autobuild.CSharp.Tests
53-
dotnet test -p:RuntimeFrameworkVersion=9.0.0 autobuilder/Semmle.Autobuild.Cpp.Tests
50+
dotnet test -p:RuntimeFrameworkVersion=9.0.5 extractor/Semmle.Util.Tests
51+
dotnet test -p:RuntimeFrameworkVersion=9.0.5 extractor/Semmle.Extraction.Tests
52+
dotnet test -p:RuntimeFrameworkVersion=9.0.5 autobuilder/Semmle.Autobuild.CSharp.Tests
53+
dotnet test -p:RuntimeFrameworkVersion=9.0.5 autobuilder/Semmle.Autobuild.Cpp.Tests
5454
shell: bash
5555
stubgentest:
5656
runs-on: ubuntu-latest

.github/workflows/query-list.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
with:
3232
python-version: 3.8
3333
- name: Download CodeQL CLI
34-
# Look under the `codeql` directory, as this is where we checked out the `github/codeql` repo
34+
# Look under the `codeql` directory, as this is where we checked out the `github/codeql` repo
3535
uses: ./codeql/.github/actions/fetch-codeql
3636
- name: Build code scanning query list
3737
run: |

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,6 @@ node_modules/
7676
# some upgrade/downgrade checks create these files
7777
**/upgrades/*/*.dbscheme.stats
7878
**/downgrades/*/*.dbscheme.stats
79+
80+
# Mergetool files
81+
*.orig

CODEOWNERS

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Catch-all for anything which isn't matched by a line lower down
2+
* @github/code-scanning-alert-coverage
3+
4+
# CodeQL language libraries
15
/actions/ @github/codeql-dynamic
26
/cpp/ @github/codeql-c-analysis
37
/csharp/ @github/codeql-csharp
@@ -7,8 +11,10 @@
711
/java/ @github/codeql-java
812
/javascript/ @github/codeql-javascript
913
/python/ @github/codeql-python
14+
/ql/ @github/codeql-ql-for-ql-reviewers
1015
/ruby/ @github/codeql-ruby
1116
/rust/ @github/codeql-rust
17+
/shared/ @github/codeql-shared-libraries-reviewers
1218
/swift/ @github/codeql-swift
1319
/misc/codegen/ @github/codeql-swift
1420
/java/kotlin-extractor/ @github/codeql-kotlin
@@ -25,9 +31,6 @@
2531
/docs/codeql/ql-language-reference/ @github/codeql-frontend-reviewers
2632
/docs/query-*-style-guide.md @github/codeql-analysis-reviewers
2733

28-
# QL for QL reviewers
29-
/ql/ @github/codeql-ql-for-ql-reviewers
30-
3134
# Bazel (excluding BUILD.bazel files)
3235
MODULE.bazel @github/codeql-ci-reviewers
3336
.bazelversion @github/codeql-ci-reviewers

0 commit comments

Comments
 (0)