diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 5432d0db..7fb63af7 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -41,4 +41,4 @@ jobs: run: ./gradlew :app:koverXmlReport --warning-mode all --stacktrace - name: Upload Test Report - uses: codecov/codecov-action@v4.4.0 + uses: codecov/codecov-action@v4.4.1 diff --git a/build.gradle.kts b/build.gradle.kts index efc5ed4c..bbea9ff4 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile // Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id("org.jetbrains.kotlinx.kover") version "0.7.6" apply false + id("org.jetbrains.kotlinx.kover") version "0.8.0" apply false id("com.diffplug.spotless") version "6.25.0" apply false } @@ -19,10 +19,10 @@ buildscript { maven(url = "https://oss.sonatype.org/content/repositories/snapshots") } dependencies { - classpath("com.android.tools.build:gradle:8.4.0") + classpath("com.android.tools.build:gradle:8.4.1") classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion") classpath("com.diffplug.spotless:spotless-plugin-gradle:6.25.0") - classpath("dev.drewhamilton.poko:poko-gradle-plugin:0.15.2") + classpath("dev.drewhamilton.poko:poko-gradle-plugin:0.16.0") classpath("com.github.ben-manes:gradle-versions-plugin:0.51.0") } } diff --git a/buildSrc/src/main/kotlin/deps.kt b/buildSrc/src/main/kotlin/deps.kt index 3256edbe..c9355cb8 100644 --- a/buildSrc/src/main/kotlin/deps.kt +++ b/buildSrc/src/main/kotlin/deps.kt @@ -26,7 +26,7 @@ object appConfig { object deps { object androidx { - const val appCompat = "androidx.appcompat:appcompat:1.6.1" + const val appCompat = "androidx.appcompat:appcompat:1.7.0" const val coreKtx = "androidx.core:core-ktx:1.13.1" const val constraintLayout = "androidx.constraintlayout:constraintlayout:2.1.4" const val recyclerView = "androidx.recyclerview:recyclerview:1.3.2" @@ -36,7 +36,7 @@ object deps { } object lifecycle { - private const val version = "2.8.0" + private const val version = "2.8.1" const val viewModelKtx = "androidx.lifecycle:lifecycle-viewmodel-ktx:$version" // viewModelScope const val runtimeKtx = "androidx.lifecycle:lifecycle-runtime-ktx:$version" // lifecycleScope @@ -90,7 +90,7 @@ object deps { } } - const val mockk = "io.mockk:mockk:1.13.10" + const val mockk = "io.mockk:mockk:1.13.11" const val kotlinJUnit = "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion" } }