diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 70bac30a98..b827bdbe27 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -8,10 +8,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 + - uses: actions/checkout@v4 + - name: Set up JDK 11 + uses: actions/setup-java@v4 with: - java-version: 1.8 + java-version: 11 + distribution: temurin + cache: 'maven' - name: Build with Maven - run: mvn -B verify -Pintegration-tests --file pom.xml + run: mvn -B -q -ff test --file pom.xml