Skip to content

Commit

Permalink
⬆️ Upgrade kotlin from 1.6.21 to 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lysoun committed Jul 19, 2024
1 parent a67bc02 commit 3086010
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object Versions {
const val kotlin = "1.6.21"
const val kotlin = "1.8.0"
const val kotlinLogging = "4.0.2"
const val logbackClassic = "1.3.3"
const val junit = "5.7.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ class Executor(private val context: Context) {
if (!context.config.porcelain) { logger.info { "${script.name} would have been executed" } }
ScriptAction.MARK_AS_EXECUTED ->
if (!context.config.porcelain) { logger.info { "${script.name} would have been only marked as executed (so not executed)" } }
ScriptAction.OVERRIDE_EXECUTED ->
if (!context.config.porcelain) { logger.info { "${script.name}'s execution would have been overridden in database" } }
}

return buildSimulatedExecutedScript(script, ExecutionStatus.OK, context.config.flags)
Expand Down

0 comments on commit 3086010

Please sign in to comment.