Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,17 @@ jobs:
fail-fast: false
matrix:
include:
- { name: "default" }
- { name: "over TCP", dockerHost: "tcp://127.0.0.1:2375" }
- { name: "Docker 18.06.3", dockerVersion: "18.06.3~ce~3-0~ubuntu" }
- { name: "default", javaVersion: 8 }
- { name: "default", javaVersion: 17 }
- { name: "over TCP", dockerHost: "tcp://127.0.0.1:2375", javaVersion: 8 }
- { name: "Docker 18.06.3", dockerVersion: "18.06.3~ce~3-0~ubuntu", javaVersion: 8 }

steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 8
java-version: ${{matrix.javaVersion}}
- name: Configure Docker
env:
DOCKER_VERSION: ${{matrix.dockerVersion}}
Expand Down
2 changes: 1 addition & 1 deletion docker-java-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.18</version>
<version>1.18.22</version>
<scope>provided</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion docker-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.18</version>
<version>1.18.22</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@
<!-- use with "mvn -DskipTests clean verify" -->
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.14.3</version>
<version>0.15.4</version>
<configuration>
<oldVersion>
<dependency>
Expand Down