We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96eff00 commit 9fa3058Copy full SHA for 9fa3058
.github/workflows/codeql-analysis.yml
@@ -7,6 +7,14 @@ on:
7
branches: [main]
8
schedule:
9
- cron: "25 0 * * 5"
10
+ workflow_dispatch:
11
+
12
+concurrency:
13
+ group: ${{ github.workflow }}-${{ github.ref }}
14
+ cancel-in-progress: true
15
16
+env:
17
+ DOTNET_NOLOGO: true
18
19
jobs:
20
analyze:
@@ -28,6 +36,18 @@ jobs:
28
36
- name: Check out repository
29
37
uses: actions/[email protected]
30
38
39
+ # This action doesn't support comments in the global.json so for now we have to specify all sdk versions
40
+ - name: Set up .NET
41
+ uses: actions/[email protected]
42
+ with:
43
+ source-url: https://nuget.pkg.github.com/xt0rted/index.json
44
+ dotnet-version: |
45
+ 3.1.x
46
+ 5.0.x
47
+ 6.0.x
48
+ env:
49
+ NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
50
31
51
- name: Initialize CodeQL
32
52
uses: github/codeql-action/init@v1
33
53
with:
0 commit comments