Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies (except core kotlin) #515

Merged
merged 2 commits into from
Mar 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
kotlin = "1.8.10"
okio = "3.3.0"
serialization = "1.5.0"
diktat = "1.2.4.1"
diktat = "1.2.5"
kotlinx-cli = "0.3.5"
kotlinx-datetime = "0.4.0"
kotlinx-coroutines = "1.6.3-native-mt"
Expand Down
2 changes: 1 addition & 1 deletion save-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import java.nio.file.StandardCopyOption

plugins {
id("com.saveourtool.save.buildutils.kotlin-library")
id("de.undercouch.download") version "5.3.1"
id("de.undercouch.download") version "5.4.0"
}

kotlin {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,7 @@ internal fun String.getLineNumberAndMessage(
* @param lineGroupIdx index of capture group for line number
* @return line number
*/
@Suppress("WRONG_OVERLOADING_FUNCTION_ARGUMENTS")
internal fun String.getLineNumber(warningRegex: Regex,
lineGroupIdx: Long?,
): Int? {
Expand Down