File tree Expand file tree Collapse file tree 1 file changed +26
-7
lines changed Expand file tree Collapse file tree 1 file changed +26
-7
lines changed Original file line number Diff line number Diff line change 10
10
schedule :
11
11
- cron : ' 53 3 * * 0'
12
12
13
- env :
14
- LANGUAGE : ' java-kotlin'
15
-
16
13
jobs :
17
- analyze :
18
- name : Analyze
14
+ analyzeJava :
15
+ name : AnalyzeJava
19
16
runs-on : ' ubuntu-latest'
20
17
permissions :
21
18
actions : read
@@ -35,13 +32,35 @@ jobs:
35
32
- name : Initialize CodeQL
36
33
uses : github/codeql-action/init@v3
37
34
with :
38
- languages : ${{ env.LANGUAGE }}
35
+ languages : ' java-kotlin '
39
36
40
37
- name : Build
41
38
run : mvn --batch-mode --update-snapshots verify
42
39
43
40
- name : Perform CodeQL Analysis
44
41
uses : github/codeql-action/analyze@v3
45
42
with :
46
- category : " /language:${{env.LANGUAGE}}"
43
+ category : " /language:java-kotlin"
44
+
45
+ analyzeActions :
46
+ name : AnalyzeActions
47
+ runs-on : ' ubuntu-latest'
48
+ permissions :
49
+ actions : read
50
+ contents : read
51
+ security-events : write
52
+
53
+ steps :
54
+ - name : Checkout repository
55
+ uses : actions/checkout@v4
56
+
57
+ - name : Initialize CodeQL
58
+ uses : github/codeql-action/init@v3
59
+ with :
60
+ languages : ' actions'
61
+
62
+ - name : Perform CodeQL Analysis
63
+ uses : github/codeql-action/analyze@v3
64
+ with :
65
+ category : " /language:actions"
47
66
...
You can’t perform that action at this time.
0 commit comments