diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index df4a39be..1bd5097b 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -20,9 +20,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up JDK 11 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '11' distribution: 'temurin' @@ -30,10 +30,18 @@ jobs: - name: Build with Maven run: mvn -B -Popendj package --file pom.xml - name: Set up JDK 8 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '8' distribution: 'temurin' cache: maven - name: Build with Maven run: mvn -B -Popendj package --file pom.xml + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + cache: maven + - name: Build with Maven + run: mvn -B -Popendj package --file pom.xml