We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 920ac53 commit 4c2ba36Copy full SHA for 4c2ba36
1 file changed
.github/workflows/codeql-analysis.yml
@@ -22,7 +22,7 @@ jobs:
22
uses: actions/checkout@v3
23
24
- name: Initialize CodeQL
25
- uses: github/codeql-action/init@v2
+ uses: github/codeql-action/init@v3
26
with:
27
queries: security-and-quality
28
languages: csharp
@@ -43,7 +43,7 @@ jobs:
43
shell: pwsh
44
run: |
45
$start = (Get-Location).Path.Length + 1
46
- $sln = Join-Path '..' 'asp.sln'
+ $sln = Join-Path '..' 'asp.slnx'
47
$projects = Get-ChildItem src -Include src -Recurse | `
48
ForEach-Object { Get-ChildItem $_.FullName -Filter *.csproj -Recurse } | `
49
ForEach-Object { $_.FullName.Substring($start) }
@@ -54,4 +54,4 @@ jobs:
54
dotnet build $slnf.FullName --configuration Release
55
56
- name: Perform CodeQL Analysis
57
- uses: github/codeql-action/analyze@v2
+ uses: github/codeql-action/analyze@v3
0 commit comments