From ab47ad2bd479b2151fe02d24323144870ae02e6c Mon Sep 17 00:00:00 2001 From: Vladimir Orany Date: Tue, 17 May 2022 14:47:42 +0200 Subject: [PATCH] Use Corretto in GHA to align with the runtime Java vendor --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 12736894..80a403b2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,12 +15,12 @@ jobs: SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} steps: - uses: actions/checkout@v2 - - name: Set up JDK 1.8 - uses: actions/setup-java@v2 + - name: Setup Java 8 + uses: actions/setup-java@v3 with: - java-version: '8' - distribution: zulu - cache: 'gradle' + distribution: corretto + java-version: 8 + cache: gradle - name: Semantic Version id: version uses: ncipollo/semantic-version-action@v1