diff --git a/.github/workflows/build-dev.yaml b/.github/workflows/build-dev.yaml index d623e13..91bec24 100644 --- a/.github/workflows/build-dev.yaml +++ b/.github/workflows/build-dev.yaml @@ -9,10 +9,10 @@ jobs: steps: - name: Checkout the code uses: actions/checkout@v4 - - name: set up JDK 1.17 + - name: set up JDK 17 uses: actions/setup-java@v4 with: - java-version: 1.17 + java-version: 17 distribution: oracle - name: Build the app run: ./gradlew assembleDebug --stacktrace diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 457d2c9..a4bf2d8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -8,10 +8,10 @@ jobs: steps: - name: Checkout the code uses: actions/checkout@v4 - - name: set up JDK 1.17 + - name: set up JDK 17 uses: actions/setup-java@v4 with: - java-version: 1.17 + java-version: 17 distribution: oracle - name: Build the APK run: ./gradlew assRU