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 af36e6e commit 011afcdCopy full SHA for 011afcd
.github/workflows/security-analysis.yml
@@ -1,13 +1,18 @@
1
name: Code Security Testing
2
3
on:
4
+ push:
5
+ branches:
6
+ - main
7
pull_request:
8
branches:
9
- main
- - release
10
schedule:
11
- cron: "0 20 * * 5"
12
13
+permissions:
14
+ security-events: write
15
+
16
concurrency:
17
group: security-${{ github.ref }}
18
cancel-in-progress: true
@@ -21,7 +26,7 @@ jobs:
21
26
- uses: actions/checkout@v3
22
27
23
28
- name: Initialize CodeQL
24
- uses: github/codeql-action/init@v2
29
+ uses: github/codeql-action/init@v3
25
30
with:
31
languages: csharp
32
@@ -34,4 +39,4 @@ jobs:
34
39
run: dotnet build --configuration Release
35
40
36
41
- name: Perform CodeQL Analysis
37
- uses: github/codeql-action/analyze@v2
42
+ uses: github/codeql-action/analyze@v3
0 commit comments