@@ -3,43 +3,42 @@ name: "Code scanning - action"
3
3
on :
4
4
pull_request :
5
5
schedule :
6
- - cron : ' 0 12 * * 4'
6
+ - cron : " 0 12 * * 4"
7
7
8
8
jobs :
9
9
CodeQL-Build :
10
-
11
10
runs-on : ubuntu-latest
12
11
if : " !contains(github.event.head_commit.message, 'skip ci')"
13
12
steps :
14
- - name : Checkout repository
15
- uses : actions/checkout@v4
16
- with :
17
- # We must fetch at least the immediate parents so that if this is
18
- # a pull request then we can checkout the head.
19
- fetch-depth : 2
20
-
21
- # Initializes the CodeQL tools for scanning.
22
- - name : Initialize CodeQL
23
- uses : github/codeql-action/init@v3
24
- # Override language selection by uncommenting this and choosing your languages
25
- with :
26
- languages : javascript
27
-
28
- # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
29
- # If this step fails, then you should remove it and run the build manually (see below)
30
- # - name: Autobuild
31
- # uses: github/codeql-action/autobuild@v1
32
-
33
- # ℹ️ Command-line programs to run using the OS shell.
34
- # 📚 https://git.io/JvXDl
35
-
36
- # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
37
- # and modify them (or add more) to build your code if your project
38
- # uses a compiled language
39
-
40
- # - run: |
41
- # make bootstrap
42
- # make release
43
-
44
- - name : Perform CodeQL Analysis
45
- uses : github/codeql-action/analyze@v3
13
+ - name : Checkout repository
14
+ uses : actions/checkout@v4
15
+ with :
16
+ # We must fetch at least the immediate parents so that if this is
17
+ # a pull request then we can checkout the head.
18
+ fetch-depth : 2
19
+
20
+ # Initializes the CodeQL tools for scanning.
21
+ - name : Initialize CodeQL
22
+ uses : github/codeql-action/init@v3
23
+ # Override language selection by uncommenting this and choosing your languages
24
+ with :
25
+ languages : javascript
26
+
27
+ # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
28
+ # If this step fails, then you should remove it and run the build manually (see below)
29
+ # - name: Autobuild
30
+ # uses: github/codeql-action/autobuild@v1
31
+
32
+ # ℹ️ Command-line programs to run using the OS shell.
33
+ # 📚 https://git.io/JvXDl
34
+
35
+ # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
36
+ # and modify them (or add more) to build your code if your project
37
+ # uses a compiled language
38
+
39
+ # - run: |
40
+ # make bootstrap
41
+ # make release
42
+
43
+ - name : Perform CodeQL Analysis
44
+ uses : github/codeql-action/analyze@v3
0 commit comments