diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9bce3efffa..28a05f8b23 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-java@v3 with: - java-version: '11' + java-version: '17' distribution: 'zulu' - uses: gradle/gradle-build-action@v2 - name: Build and run unit tests with Gradle diff --git a/build.gradle b/build.gradle index 048c15c1e1..77064c167d 100644 --- a/build.gradle +++ b/build.gradle @@ -20,6 +20,7 @@ buildscript { classpath libs.ksp.gradle classpath libs.coroutines.binarycompat.gradle classpath libs.dokka.gradle + classpath 'com.guardsquare:proguard-gradle:' + (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_11) ? '7.3.2' : '7.1.0') } }