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 8c29a478..3a6c77b7 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 16 + - name: Set up JDK 15 uses: actions/setup-java@v2 with: distribution: 'zulu' - java-version: 16 + java-version: 15 - name: Build with Gradle uses: burrunan/gradle-cache-action@v1 with: - job-id: jdk16 + job-id: jdk15 arguments: build |