Skip to content

Commit 402cdc5

Browse files
committed
Merge branch 'main' into renovate/gradle-9.x
2 parents 9f12c55 + c69be9a commit 402cdc5

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v4.2.2
28+
uses: actions/checkout@v4.3.0
2929
with:
3030
fetch-depth: 0
3131

@@ -43,7 +43,7 @@ jobs:
4343
run: chmod +x gradlew
4444

4545
- name: Cache Gradle dependencies
46-
uses: actions/[email protected].3
46+
uses: actions/[email protected].4
4747
with:
4848
path: ${{ env.GRADLE_HOME }}/caches
4949
key: |
@@ -66,7 +66,7 @@ jobs:
6666
run: ./gradlew koverXmlReport
6767

6868
- name: Upload test coverage to qlty
69-
uses: qltysh/qlty-action/coverage@v1
69+
uses: qltysh/qlty-action/coverage@v2
7070
with:
7171
oidc: true
7272
files: build/reports/jacoco/test/jacocoTestReport.xml

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,8 +343,8 @@ dependencies {
343343
implementation(jsoup)
344344
implementation("com.google.protobuf:protobuf-java:4.31.1")
345345
implementation("com.google.protobuf:protobuf-kotlin-lite:4.31.1")
346-
implementation("io.grpc:grpc-stub:1.73.0")
347-
implementation("io.grpc:grpc-protobuf:1.73.0")
346+
implementation("io.grpc:grpc-stub:1.74.0")
347+
implementation("io.grpc:grpc-protobuf:1.74.0")
348348

349349

350350
testImplementation(mockk)

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[versions]
22
coroutines = "1.10.2" # https://github.com/Kotlin/kotlinx.coroutines
3-
junit = "5.13.3" # https://junit.org/junit5 | https://central.sonatype.com/artifact/org.junit.jupiter/junit-jupiter
3+
junit = "5.13.4" # https://junit.org/junit5 | https://central.sonatype.com/artifact/org.junit.jupiter/junit-jupiter
44
kotlin = "2.2.0" # https://github.com/JetBrains/kotlin
55
detekt = "1.23.8" # https://github.com/detekt/detekt
66
dokka = "2.0.0" # https://github.com/Kotlin/dokka
7-
spotless = "7.1.0" # https://github.com/diffplug/spotless
7+
spotless = "7.2.1" # https://github.com/diffplug/spotless
88
dependency = "1.33.0" # https://github.com/autonomousapps/dependency-analysis-gradle-plugin
99
pitest = "1.15.0" # https://plugins.gradle.org/plugin/info.solidsoft.pitest
1010
ktlint = "13.0.0" # https://github.com/JLLeitschuh/ktlint-gradle
@@ -16,11 +16,11 @@ lincheck = "2.29" # https://github.com/JetBrains/lincheck
1616
serialization = "1.9.0" # https://github.com/Kotlin/kotlinx.serialization
1717
retrofit = "3.0.0" # https://github.com/square/retrofit
1818
okhttp = "5.1.0" # https://square.github.io/okhttp/changelogs/changelog
19-
dagger = "2.56.2" # https://dagger.dev
19+
dagger = "2.57" # https://dagger.dev
2020
jmh = "1.37" # https://github.com/openjdk/jmh
2121
kotlintest = "3.4.2" # https://mvnrepository.com/artifact/io.kotlintest/kotlintest-core
2222
kotest = "5.9.1" # https://kotest.io
23-
assertj = "3.27.3" # https://mvnrepository.com/artifact/org.assertj/assertj-core | https://assertj.github.io/doc
23+
assertj = "3.27.4" # https://mvnrepository.com/artifact/org.assertj/assertj-core | https://assertj.github.io/doc
2424
mockito = "5.18.0" # https://mvnrepository.com/artifact/org.mockito/mockito-core
2525
mockitoKotlin = "6.0.0" # https://github.com/mockito/mockito-kotlin
2626
logback = "1.5.18" # https://logback.qos.ch

0 commit comments

Comments
 (0)