Skip to content

Commit 49239bc

Browse files
committed
Pin third party action, update versions and dependabot config
bump mvn version too
1 parent b754f9f commit 49239bc

File tree

4 files changed

+34
-8
lines changed

4 files changed

+34
-8
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,17 @@
1616
# under the License.
1717

1818
version: 2
19+
1920
updates:
21+
2022
- package-ecosystem: "maven"
2123
directory: "/"
2224
target-branch: "master"
2325
schedule:
24-
interval: "daily"
26+
interval: "weekly"
2527

28+
- package-ecosystem: "github-actions"
29+
directory: "/"
30+
target-branch: "master"
31+
schedule:
32+
interval: "weekly"

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
strategy:
3737
matrix:
38-
java: [ 11, 17, 21, 23 ]
38+
java: [ 11, 17, 21, 24 ]
3939
fail-fast: false
4040

4141
steps:
@@ -55,7 +55,7 @@ jobs:
5555
run: ./mvnw -B -ntp verify -P run-its
5656

5757
- name: Create Test Summary
58-
uses: mikepenz/action-junit-report@v4
58+
uses: mikepenz/action-junit-report@a83fd2b5d58d4fc702e690c1ea688d702d28d281 # v5.6.1
5959
if: always()
6060
with:
6161
annotate_only: true

.mvn/wrapper/maven-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717
wrapperVersion=3.3.2
1818
distributionType=only-script
19-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
19+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.10/apache-maven-3.9.10-bin.zip

nbm-maven-plugin/src/it/full/pom.xml

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ under the License.
4646
<plugin>
4747
<groupId>org.apache.maven.plugins</groupId>
4848
<artifactId>maven-compiler-plugin</artifactId>
49-
<version>3.11.0</version>
49+
<version>3.14.0</version>
5050
<configuration>
5151
<source>8</source>
5252
<target>8</target>
@@ -65,17 +65,17 @@ under the License.
6565
<plugin>
6666
<groupId>org.apache.maven.plugins</groupId>
6767
<artifactId>maven-surefire-plugin</artifactId>
68-
<version>3.5.2</version>
68+
<version>3.5.3</version>
6969
</plugin>
7070
</plugins>
7171
</pluginManagement>
7272
</build>
7373

7474
<profiles>
7575
<profile>
76-
<id>jdk17</id>
76+
<id>jdk17to23</id>
7777
<activation>
78-
<jdk>[17,)</jdk>
78+
<jdk>[17,24)</jdk>
7979
</activation>
8080
<build>
8181
<pluginManagement>
@@ -91,6 +91,25 @@ under the License.
9191
</pluginManagement>
9292
</build>
9393
</profile>
94+
<profile>
95+
<id>jdk24plus</id>
96+
<activation>
97+
<jdk>[24,)</jdk>
98+
</activation>
99+
<build>
100+
<pluginManagement>
101+
<plugins>
102+
<plugin>
103+
<groupId>org.apache.maven.plugins</groupId>
104+
<artifactId>maven-surefire-plugin</artifactId>
105+
<configuration>
106+
<argLine>--add-opens=java.base/java.net=ALL-UNNAMED</argLine>
107+
</configuration>
108+
</plugin>
109+
</plugins>
110+
</pluginManagement>
111+
</build>
112+
</profile>
94113
</profiles>
95114

96115
<modules>

0 commit comments

Comments
 (0)