diff options
Diffstat (limited to '.github/workflows/ci-build.yml')
-rw-r--r-- | .github/workflows/ci-build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 3a6c77b7..1367eabc 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -13,14 +13,14 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 - - name: Set up JDK 15 + - name: Set up JDK 17 uses: actions/setup-java@v2 with: distribution: 'zulu' - java-version: 15 + java-version: 17 - name: Build with Gradle uses: burrunan/gradle-cache-action@v1 with: - job-id: jdk15 + job-id: jdk17 arguments: build |