We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22e17ce commit 75cf04aCopy full SHA for 75cf04a
1 file changed
.github/workflows/codeql.yml
@@ -4,10 +4,11 @@ on:
4
push:
5
branches:
6
- master
7
+ - "!dependabot/**"
8
pull_request:
- # The branches below must be a subset of the branches above
9
10
11
12
schedule:
13
- cron: "0 0 * * 0"
14
workflow_dispatch:
@@ -24,11 +25,19 @@ jobs:
24
25
steps:
26
- name: Checkout repository
27
uses: actions/checkout@v3
28
+ with:
29
+ persist-credentials: false
30
31
- name: Initialize CodeQL
32
uses: github/codeql-action/init@v2
33
with:
34
languages: "javascript"
35
+ queries: +security-and-quality
36
+
37
+ - name: Autobuild
38
+ uses: github/codeql-action/autobuild@v2
39
40
- name: Perform CodeQL Analysis
41
uses: github/codeql-action/analyze@v2
42
43
+ category: "/language:javascript"
0 commit comments