File tree Expand file tree Collapse file tree 8 files changed +48
-12
lines changed Expand file tree Collapse file tree 8 files changed +48
-12
lines changed Original file line number Diff line number Diff line change 1
1
name : Build
2
2
on : [push, pull_request]
3
3
4
+ permissions :
5
+ contents : read
6
+
4
7
jobs :
5
8
build :
6
9
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 3
3
push : {}
4
4
pull_request : {}
5
5
6
+ permissions :
7
+ contents : read
8
+
6
9
jobs :
7
10
build :
8
11
runs-on : ubuntu-latest
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
...
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ name: Infer
8
8
- master
9
9
pull_request :
10
10
11
+ permissions :
12
+ contents : read
13
+
11
14
jobs :
12
15
run_infer :
13
16
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ name: ProjectStructure
8
8
- master
9
9
pull_request :
10
10
11
+ permissions :
12
+ contents : read
13
+
11
14
jobs :
12
15
check_structure :
13
16
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -2,8 +2,13 @@ name: 'Close stale issues and PRs'
2
2
on :
3
3
schedule :
4
4
- cron : ' 0 0 * * *'
5
+ permissions :
6
+ contents : read
5
7
jobs :
6
8
stale :
9
+ permissions :
10
+ issues : write
11
+ pull-requests : write
7
12
runs-on : ubuntu-latest
8
13
steps :
9
14
- uses : actions/stale@v9
Original file line number Diff line number Diff line change 1
- FROM gitpod/workspace-java-21:2025-05-14-07-50-25
1
+ FROM gitpod/workspace-java-21:2025-06-18-16-47-14
2
2
3
3
ENV LLVM_SCRIPT="tmp_llvm.sh"
4
4
Original file line number Diff line number Diff line change 20
20
<dependency >
21
21
<groupId >org.junit</groupId >
22
22
<artifactId >junit-bom</artifactId >
23
- <version >5.13.1 </version >
23
+ <version >5.13.2 </version >
24
24
<type >pom</type >
25
25
<scope >import</scope >
26
26
</dependency >
113
113
<dependency >
114
114
<groupId >com.puppycrawl.tools</groupId >
115
115
<artifactId >checkstyle</artifactId >
116
- <version >10.25 .0</version >
116
+ <version >10.26 .0</version >
117
117
</dependency >
118
118
</dependencies >
119
119
</plugin >
120
120
<plugin >
121
121
<groupId >com.github.spotbugs</groupId >
122
122
<artifactId >spotbugs-maven-plugin</artifactId >
123
- <version >4.9.3.0 </version >
123
+ <version >4.9.3.2 </version >
124
124
<configuration >
125
125
<excludeFilterFile >spotbugs-exclude.xml</excludeFilterFile >
126
126
<includeTests >true</includeTests >
141
141
<plugin >
142
142
<groupId >org.apache.maven.plugins</groupId >
143
143
<artifactId >maven-pmd-plugin</artifactId >
144
- <version >3.26 .0</version >
144
+ <version >3.27 .0</version >
145
145
<configuration >
146
146
<rulesets >
147
147
<ruleset >/rulesets/java/maven-pmd-plugin-default.xml</ruleset >
You can’t perform that action at this time.
0 commit comments