Skip to content

Commit b486c26

Browse files
committed
Dependency updates
1 parent 703d9a3 commit b486c26

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
distribution: 'oracle'
2020
java-version: 21
2121
- name: Cache SonarCloud packages
22-
uses: actions/cache@v3
22+
uses: actions/cache@v4
2323
with:
2424
path: ~/.sonar/cache
2525
key: ${{ runner.os }}-sonar
2626
restore-keys: ${{ runner.os }}-sonar
2727
- name: Cache Maven packages
28-
uses: actions/cache@v3
28+
uses: actions/cache@v4
2929
with:
3030
path: ~/.m2
3131
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
distribution: 'oracle'
2828
java-version: 21
2929
- name: Cache Maven packages
30-
uses: actions/cache@v3
30+
uses: actions/cache@v4
3131
with:
3232
path: ~/.m2
3333
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
4848
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4949
<apache.http.version>4.5.3</apache.http.version>
50-
<version.plugin.surefire>3.2.2</version.plugin.surefire>
50+
<version.plugin.surefire>3.2.5</version.plugin.surefire>
5151
<maven-enforcer-plugin-version>3.4.1</maven-enforcer-plugin-version>
5252
<maven-clean-plugin-version>3.3.2</maven-clean-plugin-version>
5353
<maven-compiler-plugin-version>3.11.0</maven-compiler-plugin-version>
@@ -312,15 +312,15 @@
312312
<dependency>
313313
<groupId>io.netty</groupId>
314314
<artifactId>netty-handler</artifactId>
315-
<version>4.1.101.Final</version>
315+
<version>4.1.105.Final</version>
316316
</dependency>
317317

318318
<!-- unit test dependencies -->
319319

320320
<dependency>
321321
<groupId>com.google.guava</groupId>
322322
<artifactId>guava</artifactId>
323-
<version>32.1.3-jre</version>
323+
<version>33.0.0-jre</version>
324324
<scope>test</scope>
325325
</dependency>
326326
<dependency>

0 commit comments

Comments
 (0)