Skip to content

Commit 5f1bfe0

Browse files
committed
Try ignoring .NET 10 in codeql for now
1 parent b565772 commit 5f1bfe0

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/codeql.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,16 @@ jobs:
2626
uses: actions/setup-dotnet@v5
2727
with:
2828
dotnet-version: |
29-
10.0.x
29+
8.0.x
30+
9.0.x
31+
# 10.0.x
3032
- name: Initialize CodeQL
3133
uses: github/codeql-action/init@v4
3234
with:
35+
queries: security-and-quality
3336
languages: csharp
34-
# config-file: ./.github/codeql-config.yml
37+
config-file: ./.github/codeql-config.yml
3538
- name: Build source code
36-
run: dotnet build --configuration Release --framework net10.0
39+
run: dotnet build --configuration Release --framework net8.0
3740
- name: Perform CodeQL Analysis
3841
uses: github/codeql-action/analyze@v4

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"sdk": {
3-
"version": "10.0.100",
3+
"version": "9.0.100",
44
"allowPrerelease": false,
5-
"rollForward": "latestMinor"
5+
"rollForward": "latestMajor"
66
}
77
}

0 commit comments

Comments
 (0)