Skip to content

Commit

Permalink
chore(deps): Bump the detekt group with 2 updates (#1033)
Browse files Browse the repository at this point in the history
* chore(deps): Bump the detekt group with 2 updates

Bumps the detekt group with 2 updates: [io.gitlab.arturbosch.detekt](https://github.com/detekt/detekt) and [io.gitlab.arturbosch.detekt:detekt-formatting](https://github.com/detekt/detekt).


Updates `io.gitlab.arturbosch.detekt` from 1.23.1 to 1.23.3
- [Release notes](https://github.com/detekt/detekt/releases)
- [Commits](detekt/detekt@v1.23.1...v1.23.3)

Updates `io.gitlab.arturbosch.detekt:detekt-formatting` from 1.23.1 to 1.23.3
- [Release notes](https://github.com/detekt/detekt/releases)
- [Commits](detekt/detekt@v1.23.1...v1.23.3)

---
updated-dependencies:
- dependency-name: io.gitlab.arturbosch.detekt
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: detekt
- dependency-name: io.gitlab.arturbosch.detekt:detekt-formatting
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: detekt
...

Signed-off-by: dependabot[bot] <[email protected]>

* chore: align to Kotlin 1.9.10

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Benoit Orihuela <[email protected]>
  • Loading branch information
dependabot[bot] and bobeal authored Nov 1, 2023
1 parent 8b2e6fb commit c957ba5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion api-gateway/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
implementation("org.springframework.cloud:spring-cloud-starter-gateway")
implementation("org.zalando:logbook-spring-boot-webflux-autoconfigure:3.6.0")

detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.1")
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.3")
}

springBoot {
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ plugins {
kotlin("jvm") version "1.9.10" apply false
kotlin("plugin.spring") version "1.9.10" apply false
id("com.google.cloud.tools.jib") version "3.4.0" apply false
id("io.gitlab.arturbosch.detekt") version "1.23.1" apply false
id("io.gitlab.arturbosch.detekt") version "1.23.3" apply false
id("org.sonarqube") version "4.4.1.3373"
jacoco
}
Expand Down Expand Up @@ -103,7 +103,7 @@ subprojects {
configurations.matching { it.name == "detekt" }.all {
resolutionStrategy.eachDependency {
if (requested.group == "org.jetbrains.kotlin") {
useVersion("1.9.0")
useVersion("1.9.10")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion search-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
implementation("org.json:json:20231013")
implementation(project(":shared"))

detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.1")
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.3")

developmentOnly("org.springframework.boot:spring-boot-devtools")

Expand Down
2 changes: 1 addition & 1 deletion shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies {
exclude(module = "mockito-core")
}

detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.1")
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.3")

testFixturesApi("org.testcontainers:testcontainers")
testFixturesApi("org.testcontainers:junit-jupiter")
Expand Down
2 changes: 1 addition & 1 deletion subscription-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
implementation("com.jayway.jsonpath:json-path:2.8.0")
implementation(project(":shared"))

detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.1")
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.3")

developmentOnly("org.springframework.boot:spring-boot-devtools")

Expand Down

0 comments on commit c957ba5

Please sign in to comment.