-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (33 loc) · 929 Bytes
/
codeql-analysis.yml
File metadata and controls
40 lines (33 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: CodeQL
on:
push:
branches:
- main
schedule:
- cron: '31 7 * * 3'
workflow_call:
permissions:
actions: read
checks: write
contents: read
security-events: write
jobs:
codeql:
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Initialize CodeQL
id: initialize
uses: github/codeql-action/init@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4
with:
config-file: .github/codeql/codeql-config.yml
languages: typescript
source-root: src
- name: Autobuild
id: autobuild
uses: github/codeql-action/autobuild@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4
- name: Perform CodeQL Analysis
id: analyze
uses: github/codeql-action/analyze@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4