File tree Expand file tree Collapse file tree 4 files changed +8
-55
lines changed Expand file tree Collapse file tree 4 files changed +8
-55
lines changed Original file line number Diff line number Diff line change 5
5
schedule :
6
6
interval : daily
7
7
open-pull-requests-limit : 10
8
+ - package-ecosystem : " github-actions"
9
+ directory : " /"
10
+ schedule :
11
+ interval : " daily"
Original file line number Diff line number Diff line change 2
2
# https://docs.github.com/en/actions/quickstart
3
3
4
4
name : CI
5
- on : [ push, pull_request ]
5
+ on : [ push, pull_request, workflow_dispatch ]
6
6
jobs :
7
7
test :
8
8
runs-on : ubuntu-latest
9
9
timeout-minutes : 10
10
10
strategy :
11
11
matrix :
12
- java : [ 8, 11, 17, 19 ]
12
+ java : [ 8, 11, 17, 21 ]
13
13
fail-fast : false
14
14
max-parallel : 64
15
- name : Test JDK ${{ matrix.java }}
15
+ name : CI on Java ${{ matrix.java }}
16
16
17
17
steps :
18
- - uses : actions/checkout@v3
18
+ - uses : actions/checkout@v4
19
19
- uses : actions/setup-java@v3
20
20
with :
21
21
java-version : ${{ matrix.java }}
Original file line number Diff line number Diff line change 55
55
</execution >
56
56
</executions >
57
57
</plugin >
58
- <plugin >
59
- <!--
60
- config example: https://github.com/mojohaus/versions-maven-plugin/issues/157#issuecomment-306041074
61
- -->
62
- <groupId >org.codehaus.mojo</groupId >
63
- <artifactId >versions-maven-plugin</artifactId >
64
- <configuration >
65
- <!--
66
- $maven.multiModuleProjectDirectory
67
- Finding the root directory of a multi module maven reactor project - Stack Overflow
68
- https://stackoverflow.com/questions/3084629
69
- -->
70
- <rulesUri >file://${maven.multiModuleProjectDirectory} /src/versions-rules.xml</rulesUri >
71
- <generateBackupPoms >false</generateBackupPoms >
72
- </configuration >
73
- </plugin >
74
58
</plugins >
75
59
<pluginManagement >
76
60
<plugins >
118
102
<artifactId >maven-enforcer-plugin</artifactId >
119
103
<version >3.4.1</version >
120
104
</plugin >
121
- <plugin >
122
- <groupId >org.codehaus.mojo</groupId >
123
- <artifactId >versions-maven-plugin</artifactId >
124
- <version >2.16.1</version >
125
- </plugin >
126
105
</plugins >
127
106
</pluginManagement >
128
107
</build >
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments