From 7fb4e4a09517f414da53bdc5b2f0fdd9e4973130 Mon Sep 17 00:00:00 2001 From: Nassim Jahnke Date: Tue, 5 Oct 2021 14:10:04 +0200 Subject: [PATCH] Change GH actions dist to adoptium --- .github/workflows/gradle.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 28d3082a2..01ac6866f 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -7,7 +7,7 @@ on: [push, pull_request] jobs: build: - # Only run on PRs if the source branch is on a different repo. We do not need run everything twice. + # Only run on PRs if the source branch is on a different repo. We do not need to run everything twice. if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} runs-on: ubuntu-latest @@ -18,7 +18,7 @@ jobs: - name: Set up JDK 11 uses: actions/setup-java@v2 with: - distribution: 'adopt' + distribution: 'temurin' java-version: 11 - name: Build with Gradle run: ./gradlew build