diff options
-rw-r--r-- | .github/workflows/main.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e210470e..15c8ffef 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,11 +14,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 + - uses: actions/checkout@v3 + - name: Set up JDK 16 + uses: actions/setup-java@v3 with: - java-version: 1.8 + java-version: '16' + distribution: 'adopt' - name: Grant execute permission for gradlew run: chmod +x gradlew - name: Download hychat as a dependency |