File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -12,24 +12,28 @@ jobs:
12
12
analyze :
13
13
name : Analyze
14
14
runs-on : ubuntu-latest
15
+ permissions :
16
+ actions : read
17
+ contents : read
18
+ security-events : write
15
19
16
20
strategy :
17
21
fail-fast : false
18
22
matrix :
19
- language : [ 'javascript' ]
23
+ language : [ 'javascript' , 'typescript' ]
20
24
21
25
steps :
22
26
- name : Checkout repository
23
- uses : actions/checkout@v2
27
+ uses : actions/checkout@v3
24
28
25
29
# Initializes the CodeQL tools for scanning.
26
30
- name : Initialize CodeQL
27
- uses : github/codeql-action/init@v1
31
+ uses : github/codeql-action/init@v2
28
32
with :
29
33
languages : ${{ matrix.language }}
30
34
31
35
- name : Autobuild
32
- uses : github/codeql-action/autobuild@v1
36
+ uses : github/codeql-action/autobuild@v2
33
37
34
38
- name : Perform CodeQL Analysis
35
- uses : github/codeql-action/analyze@v1
39
+ uses : github/codeql-action/analyze@v2
You can’t perform that action at this time.
0 commit comments