diff --git a/.github/workflows/quality-checks.yml b/.github/workflows/quality-checks.yml index 67eca24..a2af55a 100644 --- a/.github/workflows/quality-checks.yml +++ b/.github/workflows/quality-checks.yml @@ -12,7 +12,7 @@ jobs: timeout-minutes: 10 steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.7 - name: Cache Pre-commit uses: actions/cache@v4 with: @@ -22,4 +22,4 @@ jobs: ~/.cache/pip key: ${{ runner.os }}-${{ hashFiles('./.pre-commit-config.yaml') }} - name: Pre-commit - uses: pre-commit/action@v3.0.0 + uses: pre-commit/action@v3.0.1 diff --git a/build.gradle.kts b/build.gradle.kts index 382cec5..4b9ad9f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -72,7 +72,7 @@ kotlin { } dependencies { - detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.4") + detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.23.6") implementation("com.twelvemonkeys.imageio:imageio-core:$depsTwelveMonkeys") implementation("com.twelvemonkeys.imageio:imageio-metadata:$depsTwelveMonkeys") implementation("com.twelvemonkeys.imageio:imageio-sgi:$depsTwelveMonkeys") diff --git a/gradle.properties b/gradle.properties index 06af768..d010e9d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -22,7 +22,7 @@ # SOFTWARE. # gradleVersion=7.4 -depsTwelveMonkeys=3.10.1 +depsTwelveMonkeys=3.11.0 javaVersion=17 # IntelliJ Platform Artifacts Repositories diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index c6f8aa3..02482af 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -3,13 +3,13 @@ annotations = "24.1.0" # plugins -kotlin = "1.9.22" +kotlin = "2.0.0" changelog = "2.2.0" -gradleIntelliJPlugin = "1.17.0" -qodana = "2023.2.1" -kover = "0.7.5" -detekt = "1.23.4" -ktlint = "12.1.0" +gradleIntelliJPlugin = "1.17.4" +qodana = "2024.1.5" +kover = "0.8.2" +detekt = "1.23.6" +ktlint = "12.1.1" [libraries] annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }