From fd452a4a04ae1408a55b8b5690128106b767f2db Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 26 May 2024 23:22:55 +0000 Subject: [PATCH 1/3] Update dependency com.android.lint to v8.4.1 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index adb6109..31fb1c3 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -4,7 +4,7 @@ kotlin = "2.0.0" ktlintGradle = "12.1.1" pluginPublish = "1.2.1" versionCheck = "0.51.0" -android-lint = "8.3.2" +android-lint = "8.4.1" android-lint-gradle = "1.0.0-alpha01" [plugins] From 8de2313f237aff193c75ed5a5c2f5f2cfba8cbdd Mon Sep 17 00:00:00 2001 From: Aditya Bhaskar Date: Mon, 27 May 2024 00:30:58 +0100 Subject: [PATCH 2/3] Update .gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 347e252..759d6c9 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,6 @@ google-services.json # Android Profiling *.hprof + + +/plugin-build/.kotlin/sessions/kotlin-compiler-*.salive From f71e4d46fab3f3a6a823ab4ad3e7a1eb21429dd8 Mon Sep 17 00:00:00 2001 From: Aditya Bhaskar Date: Mon, 27 May 2024 00:40:07 +0100 Subject: [PATCH 3/3] Explicitly set up Java 17 --- .github/workflows/pre-merge.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/pre-merge.yaml b/.github/workflows/pre-merge.yaml index 205cd97..4974c8e 100644 --- a/.github/workflows/pre-merge.yaml +++ b/.github/workflows/pre-merge.yaml @@ -30,6 +30,12 @@ jobs: - name: Checkout Repo uses: actions/checkout@v4 + - name: Set up Java + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + - name: Cache Gradle Caches uses: gradle/gradle-build-action@v3