Skip to content

Commit

Permalink
chore: Add Detekt 1.23.4 (#677)
Browse files Browse the repository at this point in the history
  • Loading branch information
helpermethod authored Dec 13, 2023
1 parent b288df9 commit ff9fd4c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/main/scala/io/sdkman/changelogs/DetektMigrations.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@ import com.mongodb.client.MongoDatabase
@ChangeLog(order = "079")
class DetektMigrations {
@ChangeSet(
order = "003",
id = "003_add_detect_1_23_3",
order = "004",
id = "004_add_detect_1_23_4",
author = "helpermethod"
)
def migration003(implicit db: MongoDatabase): Unit = {
val version = "1.23.3"
def migration004(implicit db: MongoDatabase): Unit = {
val version = "1.23.4"
Version(
candidate = "detekt",
version = version,
url =
f"https://github.com/detekt/detekt/releases/download/v$version/detekt-cli-$version.zip"
).validate()
.insert()
.asCandidateDefault()
}
}

0 comments on commit ff9fd4c

Please sign in to comment.