From c79bcbf4599b3854bac1d36f0ec764e292a60de1 Mon Sep 17 00:00:00 2001 From: Tomasz Tutka Date: Thu, 15 Feb 2024 11:03:16 +0100 Subject: [PATCH] fixed flow to use java distribution - issue in structure --- .github/workflows/sync_sdk_with_new_api_spec.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/sync_sdk_with_new_api_spec.yml b/.github/workflows/sync_sdk_with_new_api_spec.yml index 6f9f8bf8..90cd6d95 100644 --- a/.github/workflows/sync_sdk_with_new_api_spec.yml +++ b/.github/workflows/sync_sdk_with_new_api_spec.yml @@ -9,7 +9,6 @@ jobs: strategy: matrix: java-version: [11.0.21] - java-distribution: temurin os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: @@ -21,7 +20,7 @@ jobs: uses: actions/setup-java@v2 with: java-version: ${{ matrix.java-version }} - distribution: ${{ matrix.java-distribution }} + distribution: temurin cache: maven - name: Checkout Go Code uses: actions/checkout@v2