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 217ff27 commit 9e824f1Copy full SHA for 9e824f1
.github/workflows/codeql-analysis.yml
@@ -0,0 +1,31 @@
1
+name: CodeQL Analysis
2
+on:
3
+ push:
4
+ branches: [master]
5
+ pull_request:
6
7
+permissions:
8
+ actions: read
9
+ contents: read
10
+ security-events: write
11
+jobs:
12
+ codeql:
13
+ name: CodeQL
14
+ runs-on: ubuntu-latest
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ language: ["actions"]
19
+ steps:
20
+ - name: Checkout repository
21
+ uses: actions/checkout@v4
22
+ - name: Initialize CodeQL
23
+ uses: github/codeql-action/init@v3
24
+ with:
25
+ languages: ${{ matrix.language }}
26
+ - name: Autobuild
27
+ uses: github/codeql-action/autobuild@v3
28
+ - name: Perform CodeQL Analysis
29
+ uses: github/codeql-action/analyze@v3
30
31
+ category: "Security"
0 commit comments