diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-01-26 11:24:29 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-01-26 11:24:29 +0530 |
commit | 448ed3e57549ad44a8e444d283398aaa78c92ac0 (patch) | |
tree | 2025be26ef8a37874c7fd5f3e6b96f399121e07e /.github | |
parent | 10935b3c72ac7b5e74076ecc1a9895cc6144696e (diff) |
chore(ci): update shadow job configuration
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/shadow_job.yml | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/.github/workflows/shadow_job.yml b/.github/workflows/shadow_job.yml index bad5ec87..295760b4 100644 --- a/.github/workflows/shadow_job.yml +++ b/.github/workflows/shadow_job.yml @@ -14,16 +14,13 @@ jobs: matrix: agp-version: - 7.4.0 - - 8.0.0-alpha11 + - 8.0.0-beta01 + - 8.1.0-alpha01 gradle-version: - wrapper - nightly java-version: - - 11 - 18 - exclude: - - agp-version: 8.0.0-alpha11 - java-version: 11 runs-on: ubuntu-latest steps: - name: Checkout repository @@ -41,7 +38,7 @@ jobs: run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - name: Workaround AGP 8.x deprecations - if: startsWith(matrix.agp-version, '8.0.0') + if: startsWith(matrix.agp-version, '8.') run: sed -i 's/android.disableAutomaticComponentCreation=true//' gradle.properties - name: Run checks |