Skip to content

Commit a0af6db

Browse files
committed
update deps
1 parent 182707e commit a0af6db

File tree

2 files changed

+16
-23
lines changed

2 files changed

+16
-23
lines changed

.github/workflows/unit-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121

2222
- name: Set up JDK
23-
uses: actions/setup-java@v3
23+
uses: actions/setup-java@v4
2424
with:
25-
java-version: '18'
25+
java-version: '21'
2626
distribution: 'liberica'
2727
cache: maven
2828

2929
- name: Maven Tests
3030
run: mvn --batch-mode clean test
3131

3232
- name: Test Coverage
33-
uses: codecov/codecov-action@v4.0.1
33+
uses: codecov/codecov-action@v5
3434
env:
3535
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
3636

pom.xml

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
<maven.compiler.release>11</maven.compiler.release>
6565
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6666
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
67-
<lombok.version>1.18.32</lombok.version>
68-
<checkerframework.version>3.42.0</checkerframework.version>
69-
<apache-poi.version>5.2.5</apache-poi.version>
67+
<lombok.version>1.18.38</lombok.version>
68+
<checkerframework.version>3.49.3</checkerframework.version>
69+
<apache-poi.version>5.4.1</apache-poi.version>
7070
</properties>
7171

7272
<repositories>
@@ -88,7 +88,7 @@
8888
<dependency>
8989
<groupId>com.github.spacious-team</groupId>
9090
<artifactId>table-wrapper-api</artifactId>
91-
<version>2023.1</version>
91+
<version>2025.1</version>
9292
</dependency>
9393
<dependency>
9494
<groupId>org.apache.poi</groupId>
@@ -100,13 +100,6 @@
100100
<artifactId>poi-ooxml</artifactId>
101101
<version>${apache-poi.version}</version>
102102
</dependency>
103-
<!-- org.apache.poi:poi-ooxml vulnerability fix https://devhub.checkmarx.com/cve-details/CVE-2024-26308/ -->
104-
<!-- Remove after poi-ooxml update -->
105-
<dependency>
106-
<groupId>org.apache.commons</groupId>
107-
<artifactId>commons-compress</artifactId>
108-
<version>1.26.1</version>
109-
</dependency>
110103
<dependency>
111104
<groupId>org.projectlombok</groupId>
112105
<artifactId>lombok</artifactId>
@@ -123,25 +116,25 @@
123116
<dependency>
124117
<groupId>org.junit.jupiter</groupId>
125118
<artifactId>junit-jupiter</artifactId>
126-
<version>5.9.2</version>
119+
<version>5.12.2</version>
127120
<scope>test</scope>
128121
</dependency>
129122
<dependency>
130123
<groupId>org.mockito</groupId>
131124
<artifactId>mockito-junit-jupiter</artifactId>
132-
<version>5.2.0</version>
125+
<version>5.18.0</version>
133126
<scope>test</scope>
134127
</dependency>
135128
<dependency>
136129
<groupId>nl.jqno.equalsverifier</groupId>
137130
<artifactId>equalsverifier</artifactId>
138-
<version>3.14.1</version>
131+
<version>4.0</version>
139132
<scope>test</scope>
140133
</dependency>
141134
<dependency>
142135
<groupId>org.slf4j</groupId>
143136
<artifactId>slf4j-api</artifactId>
144-
<version>2.0.7</version>
137+
<version>2.0.17</version>
145138
<scope>test</scope> <!-- yes, for tests only -->
146139
</dependency>
147140
</dependencies>
@@ -151,15 +144,15 @@
151144
<plugins>
152145
<plugin>
153146
<artifactId>maven-surefire-plugin</artifactId>
154-
<version>2.22.2</version> <!-- JUnit 5 requirement -->
147+
<version>3.5.3</version> <!-- JUnit 5 requirement -->
155148
</plugin>
156149
</plugins>
157150
</pluginManagement>
158151
<plugins>
159152
<plugin>
160153
<groupId>org.apache.maven.plugins</groupId>
161154
<artifactId>maven-compiler-plugin</artifactId>
162-
<version>3.10.1</version>
155+
<version>3.14.0</version>
163156
<configuration>
164157
<fork>true</fork> <!-- Must fork or else JVM arguments are ignored. -->
165158
<showDeprecation>true</showDeprecation>
@@ -202,7 +195,7 @@
202195
<plugin>
203196
<groupId>org.jacoco</groupId>
204197
<artifactId>jacoco-maven-plugin</artifactId>
205-
<version>0.8.8</version>
198+
<version>0.8.13</version>
206199
<executions>
207200
<execution>
208201
<id>prepare-agent</id>
@@ -222,7 +215,7 @@
222215
<plugin>
223216
<groupId>org.apache.maven.plugins</groupId>
224217
<artifactId>maven-source-plugin</artifactId>
225-
<version>3.2.1</version>
218+
<version>3.3.1</version>
226219
<executions>
227220
<execution>
228221
<id>attach-sources</id>

0 commit comments

Comments
 (0)