Skip to content

Commit 1f90d6d

Browse files
Merge branch 'develop' into feature/zero-deps
# Conflicts: # pom.xml
2 parents 36bdb8d + 98bb349 commit 1f90d6d

File tree

5 files changed

+22
-22
lines changed

5 files changed

+22
-22
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
name: Build and Test
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
with:
1313
fetch-depth: 0
14-
- uses: actions/setup-java@v4
14+
- uses: actions/setup-java@v5
1515
with:
1616
java-version: 21
1717
distribution: 'zulu'
@@ -37,7 +37,7 @@ jobs:
3737
env:
3838
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
3939
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
40-
- uses: actions/upload-artifact@v4
40+
- uses: actions/upload-artifact@v5
4141
with:
4242
name: artifacts
4343
path: target/*.jar

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ jobs:
1919
security-events: write
2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
with:
2424
fetch-depth: 2
2525
- name: Set up Java
26-
uses: actions/setup-java@v4
26+
uses: actions/setup-java@v5
2727
with:
2828
java-version: 21
2929
distribution: 'zulu'
3030
cache: 'maven'
3131
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@v3
32+
uses: github/codeql-action/init@v4
3333
with:
3434
languages: java
3535
config: |
@@ -38,6 +38,6 @@ jobs:
3838
- name: Build
3939
run: ./mvnw -B install -DskipTests
4040
- name: Perform CodeQL Analysis
41-
uses: github/codeql-action/analyze@v3
41+
uses: github/codeql-action/analyze@v4
4242
with:
4343
category: "/language:java"

.github/workflows/publish-central.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
runs-on: ubuntu-latest
88
if: startsWith(github.ref, 'refs/tags/') # only allow publishing tagged versions
99
steps:
10-
- uses: actions/checkout@v4
11-
- uses: actions/setup-java@v4
10+
- uses: actions/checkout@v5
11+
- uses: actions/setup-java@v5
1212
with:
1313
java-version: 21
1414
distribution: 'zulu'

.github/workflows/publish-github.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
runs-on: ubuntu-latest
88
if: startsWith(github.ref, 'refs/tags/') # only allow publishing tagged versions
99
steps:
10-
- uses: actions/checkout@v4
11-
- uses: actions/setup-java@v4
10+
- uses: actions/checkout@v5
11+
- uses: actions/setup-java@v5
1212
with:
1313
java-version: 21
1414
distribution: 'zulu'

pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@
3939
<project.build.outputTimestamp>2025-03-14T12:02:43Z</project.build.outputTimestamp>
4040

4141
<!-- test dependencies -->
42-
<junit.version>5.12.0</junit.version>
42+
<junit.version>6.0.1</junit.version>
4343
<mockito.version>5.20.0</mockito.version>
4444
<jmh.version>1.37</jmh.version>
4545
<hamcrest.version>3.0</hamcrest.version>
46-
<guava.version>33.4.0-jre</guava.version>
46+
<guava.version>33.5.0-jre</guava.version>
4747

4848
<!-- maven plugins -->
49-
<dependency-check.version>12.1.1</dependency-check.version>
49+
<dependency-check.version>12.1.8</dependency-check.version>
5050

5151
<!-- Property used by surefire to determine jacoco engine -->
5252
<surefire.jacoco.args/>
@@ -97,12 +97,12 @@
9797
<plugin>
9898
<groupId>org.codehaus.mojo</groupId>
9999
<artifactId>versions-maven-plugin</artifactId>
100-
<version>2.18.0</version>
100+
<version>2.19.1</version>
101101
</plugin>
102102
<plugin>
103103
<groupId>org.apache.maven.plugins</groupId>
104104
<artifactId>maven-enforcer-plugin</artifactId>
105-
<version>3.5.0</version>
105+
<version>3.6.2</version>
106106
<executions>
107107
<execution>
108108
<id>enforce-java</id>
@@ -136,7 +136,7 @@
136136
</plugin>
137137
<plugin>
138138
<artifactId>maven-compiler-plugin</artifactId>
139-
<version>3.14.0</version>
139+
<version>3.14.1</version>
140140
<configuration>
141141
<release>8</release>
142142
<encoding>UTF-8</encoding>
@@ -169,7 +169,7 @@
169169
<plugin>
170170
<groupId>org.apache.maven.plugins</groupId>
171171
<artifactId>maven-surefire-plugin</artifactId>
172-
<version>3.5.3</version>
172+
<version>3.5.4</version>
173173
<configuration>
174174
<argLine>@{surefire.jacoco.args} -javaagent:${org.mockito:mockito-core:jar}</argLine>
175175
</configuration>
@@ -200,7 +200,7 @@
200200
</plugin>
201201
<plugin>
202202
<artifactId>maven-javadoc-plugin</artifactId>
203-
<version>3.11.2</version>
203+
<version>3.12.0</version>
204204
<executions>
205205
<execution>
206206
<id>attach-javadocs</id>
@@ -258,7 +258,7 @@
258258
<plugin>
259259
<groupId>org.jacoco</groupId>
260260
<artifactId>jacoco-maven-plugin</artifactId>
261-
<version>0.8.13</version>
261+
<version>0.8.14</version>
262262
<executions>
263263
<execution>
264264
<id>prepare-agent</id>
@@ -287,7 +287,7 @@
287287
<plugins>
288288
<plugin>
289289
<artifactId>maven-gpg-plugin</artifactId>
290-
<version>3.2.7</version>
290+
<version>3.2.8</version>
291291
<executions>
292292
<execution>
293293
<id>sign-artifacts</id>
@@ -312,7 +312,7 @@
312312
<plugin>
313313
<groupId>org.sonatype.central</groupId>
314314
<artifactId>central-publishing-maven-plugin</artifactId>
315-
<version>0.7.0</version>
315+
<version>0.9.0</version>
316316
<extensions>true</extensions>
317317
<configuration>
318318
<publishingServerId>central</publishingServerId>

0 commit comments

Comments
 (0)