Jelajahi Sumber

Bump GH actions to Java17

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Andy Scherzinger 2 tahun lalu
induk
melakukan
9d632a5abf

+ 2 - 2
.github/workflows/analysis.yml

@@ -32,11 +32,11 @@ jobs:
                 with:
                     repository: ${{ steps.get-vars.outputs.repo }}
                     ref: ${{ steps.get-vars.outputs.branch }}
-            -   name: Set up JDK 11
+            -   name: Set up JDK 17
                 uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
                 with:
                     distribution: "temurin"
-                    java-version: 11
+                    java-version: 17
             -   name: Install dependencies
                 run: |
                     python3 -m pip install defusedxml

+ 2 - 2
.github/workflows/assembleFlavors.yml

@@ -16,11 +16,11 @@ jobs:
                 flavor: [ Generic, Gplay, Huawei ]
         steps:
             -   uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
-            -   name: set up JDK 11
+            -   name: set up JDK 17
                 uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3
                 with:
                     distribution: "temurin"
-                    java-version: 11
+                    java-version: 17
             -   name: Build ${{ matrix.flavor }}
                 run: |
                     echo "org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" >> gradle.properties

+ 2 - 2
.github/workflows/check.yml

@@ -16,10 +16,10 @@ jobs:
                 task: [ detekt, spotlessKotlinCheck ]
         steps:
             -   uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
-            -   name: Set up JDK 11
+            -   name: Set up JDK 17
                 uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3
                 with:
                     distribution: "temurin"
-                    java-version: 11
+                    java-version: 17
             -   name: Check ${{ matrix.task }}
                 run: ./gradlew ${{ matrix.task }}

+ 2 - 2
.github/workflows/qa.yml

@@ -17,12 +17,12 @@ jobs:
                 id: check-secrets
             -   uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
                 if: ${{ steps.check-secrets.outputs.ok == 'true' }}
-            -   name: set up JDK 11
+            -   name: set up JDK 17
                 uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3
                 if: ${{ steps.check-secrets.outputs.ok == 'true' }}
                 with:
                     distribution: "temurin"
-                    java-version: 11
+                    java-version: 17
             -   name: Install NDK and cmake
                 if: ${{ steps.check-secrets.outputs.ok == 'true' }}
                 run: |

+ 1 - 1
.github/workflows/screenShotTest.yml

@@ -39,7 +39,7 @@ jobs:
             -   uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3
                 with:
                     distribution: "temurin"
-                    java-version: 11
+                    java-version: 17
 
             -   name: create AVD and generate snapshot for caching
                 if: steps.avd-cache.outputs.cache-hit != 'true'

+ 2 - 2
.github/workflows/unit-tests.yml

@@ -15,11 +15,11 @@ jobs:
         runs-on: ubuntu-latest
         steps:
             -   uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
-            -   name: Set up JDK 11
+            -   name: Set up JDK 17
                 uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
                 with:
                     distribution: "temurin"
-                    java-version: 11
+                    java-version: 17
             -   name: Delete old comments
                 env:
                     GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}