Skip to content

Commit e7b0268

Browse files
fix(deps): update all dependencies
| datasource | package | from | to | | -------------- | --------------------------------------------------------- | ------- | ------- | | github-tags | codecov/codecov-action | v5.1.1 | v5.1.2 | | gradle-version | gradle | 8.11.1 | 8.12 | | maven | io.mockk:mockk | 1.13.13 | 1.13.14 | | maven | org.jetbrains.kotlinx:kotlinx-coroutines-test | 1.9.0 | 1.10.1 | | maven | org.jetbrains.kotlinx:kotlinx-coroutines-core | 1.9.0 | 1.10.1 | | maven | org.jetbrains.kotlinx:kotlinx-coroutines-android | 1.9.0 | 1.10.1 | | maven | io.insert-koin:koin-test-junit4 | 4.0.0 | 4.0.1 | | maven | io.insert-koin:koin-test | 4.0.0 | 4.0.1 | | maven | io.insert-koin:koin-core | 4.0.0 | 4.0.1 | | maven | io.insert-koin:koin-android | 4.0.0 | 4.0.1 | | maven | org.jetbrains.compose:org.jetbrains.compose.gradle.plugin | 1.7.1 | 1.7.3 |
1 parent 675b9ca commit e7b0268

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

Diff for: .github/workflows/unit-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: ./gradlew app:koverXmlReportDebug --warning-mode all --stacktrace
4242

4343
- name: Upload Test Report
44-
uses: codecov/[email protected].1
44+
uses: codecov/[email protected].2
4545
with:
4646
files: ./app/build/reports/kover/reportDebug.xml
4747
fail_ci_if_error: true

Diff for: buildSrc/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

Diff for: gradle/libs.versions.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ flowExt = "1.0.0"
2222
jacoco = "0.8.11"
2323
java-target = "11"
2424
java-toolchain = "21"
25-
jetbrains-compose = "1.7.1"
25+
jetbrains-compose = "1.7.3"
2626
junit = "4.13.2"
27-
koin = "4.0.0"
27+
koin = "4.0.1"
2828
kotlin = "2.1.0"
29-
kotlinx-coroutines = "1.9.0"
29+
kotlinx-coroutines = "1.10.1"
3030
kotlinx-kover = "0.9.0"
3131
ktlint = "1.0.0"
32-
mockk = "1.13.13"
32+
mockk = "1.13.14"
3333
poko = "0.18.1"
3434
squareup-leakcanary = "2.14"
3535
squareup-logging-interceptor = "4.12.0"

Diff for: gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

Diff for: gradlew

+1-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum

0 commit comments

Comments
 (0)