Skip to content

Commit 078348f

Browse files
authored
Add Java 17 to the CI matrix (docker-java#1794)
* Add Java 17 to the CI matrix * Update ci.yml * Update Lombok * update japicmp * Update Lombok, use Java 17
1 parent 38ee502 commit 078348f

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,17 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
include:
14-
- { name: "default" }
15-
- { name: "over TCP", dockerHost: "tcp://127.0.0.1:2375" }
16-
- { name: "Docker 18.06.3", dockerVersion: "18.06.3~ce~3-0~ubuntu" }
14+
- { name: "default", javaVersion: 8 }
15+
- { name: "default", javaVersion: 17 }
16+
- { name: "over TCP", dockerHost: "tcp://127.0.0.1:2375", javaVersion: 8 }
17+
- { name: "Docker 18.06.3", dockerVersion: "18.06.3~ce~3-0~ubuntu", javaVersion: 8 }
1718

1819
steps:
1920
- uses: actions/checkout@v2
20-
- name: Set up JDK 8
21+
- name: Set up JDK
2122
uses: actions/setup-java@v1
2223
with:
23-
java-version: 8
24+
java-version: ${{matrix.javaVersion}}
2425
- name: Configure Docker
2526
env:
2627
DOCKER_VERSION: ${{matrix.dockerVersion}}

docker-java-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.projectlombok</groupId>
4040
<artifactId>lombok</artifactId>
41-
<version>1.18.18</version>
41+
<version>1.18.22</version>
4242
<scope>provided</scope>
4343
</dependency>
4444

docker-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
<dependency>
138138
<groupId>org.projectlombok</groupId>
139139
<artifactId>lombok</artifactId>
140-
<version>1.18.18</version>
140+
<version>1.18.22</version>
141141
<scope>provided</scope>
142142
</dependency>
143143
</dependencies>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@
236236
<!-- use with "mvn -DskipTests clean verify" -->
237237
<groupId>com.github.siom79.japicmp</groupId>
238238
<artifactId>japicmp-maven-plugin</artifactId>
239-
<version>0.14.3</version>
239+
<version>0.15.4</version>
240240
<configuration>
241241
<oldVersion>
242242
<dependency>

0 commit comments

Comments
 (0)