Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 078348f

Browse filesBrowse files
authored
Add Java 17 to the CI matrix (#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
Copy full SHA for 078348f

File tree

Expand file treeCollapse file tree

4 files changed

+9
-8
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+9
-8
lines changed

‎.github/workflows/ci.yml

Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+6-5Lines 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

Copy file name to clipboardExpand all lines: docker-java-api/pom.xml
+1-1Lines 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

Copy file name to clipboardExpand all lines: docker-java/pom.xml
+1-1Lines 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

Copy file name to clipboardExpand all lines: pom.xml
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.