Skip to content

Commit

Permalink
#2591 Update dependencies so tests run on Java 18
Browse files Browse the repository at this point in the history
Update GitHub Actions for tests to run on Java 11, 13, 16, 17 and 18-ea
  • Loading branch information
filiphr committed Sep 21, 2021
1 parent b59a239 commit 8b84f5b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/java-ea.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [17-ea]
java: [18-ea]
name: 'Linux JDK ${{ matrix.java }}'
runs-on: ubuntu-latest
steps:
Expand All @@ -21,4 +21,4 @@ jobs:
with:
java-version: ${{ matrix.java }}
- name: 'Test'
run: ./mvnw ${MAVEN_ARGS} install -DskipDistribution=true
run: ./mvnw ${MAVEN_ARGS} -Djacoco.skip=true install -DskipDistribution=true
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [11, 13, 16]
java: [11, 13, 16, 17]
name: 'Linux JDK ${{ matrix.java }}'
runs-on: ubuntu-latest
steps:
Expand All @@ -23,7 +23,7 @@ jobs:
with:
java-version: ${{ matrix.java }}
- name: 'Test'
run: ./mvnw ${MAVEN_ARGS} install -DskipDistribution=true
run: ./mvnw ${MAVEN_ARGS} -Djacoco.skip=true install -DskipDistribution=true
linux:
name: 'Linux JDK 8'
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion parent/pom.xml
Expand Up @@ -25,7 +25,7 @@
<org.apache.maven.plugins.enforcer.version>3.0.0-M3</org.apache.maven.plugins.enforcer.version>
<org.apache.maven.plugins.surefire.version>3.0.0-M5</org.apache.maven.plugins.surefire.version>
<org.apache.maven.plugins.javadoc.version>3.1.0</org.apache.maven.plugins.javadoc.version>
<org.springframework.version>5.3.3</org.springframework.version>
<org.springframework.version>5.3.10</org.springframework.version>
<org.eclipse.tycho.compiler-jdt.version>1.6.0</org.eclipse.tycho.compiler-jdt.version>
<com.puppycrawl.tools.checkstyle.version>8.36.1</com.puppycrawl.tools.checkstyle.version>
<org.junit.jupiter.version>5.8.0-M1</org.junit.jupiter.version>
Expand Down

0 comments on commit 8b84f5b

Please sign in to comment.