Skip to content

Commit 6db6eb5

Browse files
committed
Added codeql workflow.
1 parent 798ea3a commit 6db6eb5

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
on:
2+
workflow_dispatch:
3+
schedule:
4+
- cron: 0 6 * * *
5+
push:
6+
branches:
7+
- main
8+
paths:
9+
- .github/workflows/codeql-analysis.yml
10+
11+
name: codeql analysis
12+
permissions:
13+
contents: read
14+
security-events: write
15+
jobs:
16+
actions:
17+
name: CodeQL analysis (GitHub Actions)
18+
runs-on: ubuntu-24.04
19+
20+
steps:
21+
- uses: actions/checkout@v5
22+
23+
- name: Initialize CodeQL
24+
uses: github/codeql-action/init@v3
25+
with:
26+
languages: actions
27+
28+
- name: Perform CodeQL Analysis
29+
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)