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 9387803 commit 06f8d48Copy full SHA for 06f8d48
.github/workflows/codeql.yml
@@ -0,0 +1,32 @@
1
+---
2
+name: "CodeQL Scan for GitHub Actions Workflows"
3
+
4
+on:
5
+ push:
6
+ branches: [main, master]
7
+ paths: [".github/workflows/**"]
8
+ pull_request:
9
10
11
12
+jobs:
13
+ analyze:
14
+ name: Analyze GitHub Actions workflows
15
+ runs-on: ubuntu-latest
16
+ permissions:
17
+ actions: read
18
+ contents: read
19
+ security-events: write
20
21
+ steps:
22
+ - uses: actions/checkout@v4
23
24
+ - name: Initialize CodeQL
25
+ uses: github/codeql-action/init@v3
26
+ with:
27
+ languages: actions
28
29
+ - name: Run CodeQL Analysis
30
+ uses: github/codeql-action/analyze@v3
31
32
+ category: actions
0 commit comments