diff --git a/.github/workflows/build_and_publish.yml b/.github/workflows/build_and_publish.yml index b00478e..e717310 100644 --- a/.github/workflows/build_and_publish.yml +++ b/.github/workflows/build_and_publish.yml @@ -15,10 +15,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set up JDK 11 + - name: Set up JDK 17 uses: actions/setup-java@v3 with: - java-version: 11 + java-version: 17 distribution: 'temurin' server-id: github # Value of the distributionManagement/repository/id field of the pom.xml diff --git a/.github/workflows/build_pr.yml b/.github/workflows/build_pr.yml index 7185dc0..929b896 100644 --- a/.github/workflows/build_pr.yml +++ b/.github/workflows/build_pr.yml @@ -10,10 +10,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Set up JDK 11 + - name: Set up JDK 17 uses: actions/setup-java@v3 with: - java-version: 11 + java-version: 17 distribution: 'temurin' server-id: github # Value of the distributionManagement/repository/id field of the pom.xml - name: Build with Maven