Skip to content

Commit dfe73d5

Browse files
committed
Use v4 of the setup java action
1 parent 2a02d00 commit dfe73d5

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,9 @@ jobs:
9292
runs-on: ubuntu-latest
9393
steps:
9494
- uses: actions/checkout@v3
95+
9596
- name: Set up Apache Maven Central
96-
uses: actions/setup-java@v3
97+
uses: actions/setup-java@v4
9798
with:
9899
distribution: 'adopt'
99100
java-version: '11'

pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,14 +143,13 @@
143143

144144
<properties>
145145
<jackson.version>2.13.2</jackson.version>
146-
<jackson.databind.version>2.13.2.1</jackson.databind.version>
146+
<jackson.databind.version>2.13.4.1</jackson.databind.version>
147147
<maven.compiler.source>1.8</maven.compiler.source>
148148
<maven.compiler.target>1.8</maven.compiler.target>
149149
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
150150
</properties>
151151

152152
<dependencies>
153-
154153
<dependency>
155154
<groupId>javax.xml.bind</groupId>
156155
<artifactId>jaxb-api</artifactId>
@@ -181,7 +180,6 @@
181180
<artifactId>lombok</artifactId>
182181
<version>1.18.20</version>
183182
</dependency>
184-
185183
<dependency>
186184
<groupId>com.squareup.okhttp3</groupId>
187185
<artifactId>okhttp</artifactId>

0 commit comments

Comments
 (0)