From f834368ce2d462a52b5f471a8cd2019f7c235952 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 18 Mar 2023 02:57:24 +0000 Subject: [PATCH 1/2] fix(deps): update dependency com.charleskorn.kaml:kaml to v0.53.0 --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index d7e7791e..96c81d37 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -9,7 +9,7 @@ repositories { } dependencies { - implementation("com.charleskorn.kaml:kaml:0.52.0") + implementation("com.charleskorn.kaml:kaml:0.53.0") testImplementation(platform("io.kotest:kotest-bom:5.5.5")) testImplementation("io.kotest:kotest-runner-junit5") From 459addd29b2ebc48a788099ccecbee1e698c666f Mon Sep 17 00:00:00 2001 From: Piotr Krzeminski Date: Tue, 21 Mar 2023 19:26:46 +0100 Subject: [PATCH 2/2] Adjust for a breaking change --- .../githubactionstyping/parsing/TypesManifestParsing.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/it/krzeminski/githubactionstyping/parsing/TypesManifestParsing.kt b/src/main/kotlin/it/krzeminski/githubactionstyping/parsing/TypesManifestParsing.kt index 68569f13..1a2e69f6 100644 --- a/src/main/kotlin/it/krzeminski/githubactionstyping/parsing/TypesManifestParsing.kt +++ b/src/main/kotlin/it/krzeminski/githubactionstyping/parsing/TypesManifestParsing.kt @@ -27,6 +27,7 @@ data class ApiItem( private val myYaml = Yaml( configuration = Yaml.default.configuration.copy( strictMode = false, + allowAnchorsAndAliases = true, ) )