From 3731a7ca5f80b24813d953af288c01adc1413515 Mon Sep 17 00:00:00 2001 From: Andrei Zaitcev Date: Thu, 14 Apr 2022 09:21:00 +0100 Subject: [PATCH] Use jdk 11 to build the project --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4a1e8e47..4b176cfd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,13 +7,13 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - - name: Set up JDK 8 - uses: actions/setup-java@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v3 with: - java-version: '8' - distribution: 'adopt' + java-version: '11' + distribution: 'temurin' cache: gradle - name: Validate Gradle wrapper