diff --git a/.github/workflows/ci-it.yml b/.github/workflows/ci-it.yml index 4a057bb8..4cc1b488 100644 --- a/.github/workflows/ci-it.yml +++ b/.github/workflows/ci-it.yml @@ -37,17 +37,10 @@ jobs: echo "JAVA_VERSION=$JAVA_VERSION" >> $GITHUB_ENV - name: 'Configure: Install Java' - if: ${{ env.JAVA_VERSION == '8' }} uses: actions/setup-java@v4 with: java-version: ${{ env.JAVA_VERSION }} distribution: 'liberica' - - name: 'Configure: Install GraalVM' - if: ${{ env.JAVA_VERSION != '8' }} - uses: actions/setup-java@v4 - with: - java-version: ${{ env.JAVA_VERSION }} - distribution: 'graalvm' - name: 'Configure: cache for maven dependencies' uses: actions/cache@v3 with: diff --git a/.github/workflows/common.yml b/.github/workflows/common.yml index f5cb540f..71163ca6 100644 --- a/.github/workflows/common.yml +++ b/.github/workflows/common.yml @@ -274,17 +274,10 @@ jobs: shell: bash run: find . -type f -name "*.sh" -exec chmod a+x '{}' \; - name: 'Configure: Install Java' - if: ${{ needs.parameters.outputs.jdk_build == '8' }} uses: actions/setup-java@v4 with: java-version: ${{ needs.parameters.outputs.jdk_build }} distribution: 'liberica' - - name: 'Configure: Install GraalVM' - if: ${{ needs.parameters.outputs.jdk_build != '8' }} - uses: actions/setup-java@v4 - with: - java-version: ${{ needs.parameters.outputs.jdk_build }} - distribution: 'graalvm' - name: 'Configure: cache for maven dependencies' uses: actions/cache@v3 with: @@ -433,17 +426,10 @@ jobs: shell: bash run: find . -type f -name "*.sh" -exec chmod a+x '{}' \; - name: 'Configure: Install Java' - if: ${{ needs.parameters.outputs.jdk_build == '8' }} uses: actions/setup-java@v4 with: java-version: ${{ needs.parameters.outputs.jdk_build }} distribution: 'liberica' - - name: 'Configure: Install GraalVM' - if: ${{ needs.parameters.outputs.jdk_build != '8' }} - uses: actions/setup-java@v4 - with: - java-version: ${{ needs.parameters.outputs.jdk_build }} - distribution: 'graalvm' - name: 'Configure: cache for maven dependencies' uses: actions/cache@v3 with: