Skip to content

Commit 1bcfb19

Browse files
Update dependency io.github.typesafegithub:github-workflows-kt to v3.6.0 (#113)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [io.github.typesafegithub:github-workflows-kt](https://redirect.github.com/typesafegithub/github-workflows-kt) | `3.5.0` -> `3.6.0` | [![age](https://developer.mend.io/api/mc/badges/age/maven/io.github.typesafegithub:github-workflows-kt/3.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.github.typesafegithub:github-workflows-kt/3.5.0/3.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>typesafegithub/github-workflows-kt (io.github.typesafegithub:github-workflows-kt)</summary> ### [`v3.6.0`](https://redirect.github.com/typesafegithub/github-workflows-kt/releases/tag/v3.6.0): 3.6.0 [Compare Source](https://redirect.github.com/typesafegithub/github-workflows-kt/compare/v3.5.0...v3.6.0) ##### ⭐ Features - [add API for adding intended action version in comment](https://redirect.github.com/typesafegithub/github-workflows-kt/commit/bd933fe442363c21e434b7feebe3d6dcd79cb334) ##### :hammer\_and\_wrench: Fixes None. ##### 💣 Breaking changes None. ##### 📦 Dependencies - [update dependency it.krzeminski:snakeyaml-engine-kmp to v3.2.1](https://redirect.github.com/typesafegithub/github-workflows-kt/commit/cbaa9d9ac9f4f7ceb3664d053c7619eb80fd7852) *** The above release notes include customer-facing changes. If you're interested also in internal changes, please see the full change log: <typesafegithub/github-workflows-kt@v3.5.0...v3.6.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/typesafegithub/github-actions-typing-catalog). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE1OS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Piotr Krzeminski <git@krzeminski.it>
1 parent 71ffc30 commit 1bcfb19

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/test.main.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env kotlin
22
@file:Repository("https://repo.maven.apache.org/maven2/")
3-
@file:DependsOn("io.github.typesafegithub:github-workflows-kt:3.5.0")
3+
@file:DependsOn("io.github.typesafegithub:github-workflows-kt:3.6.0")
44
@file:DependsOn("it.krzeminski:snakeyaml-engine-kmp-jvm:4.0.1")
55
@file:DependsOn("io.github.optimumcode:json-schema-validator-jvm:0.5.2")
66
@file:DependsOn("com.github.sya-ri:kgit:1.1.0")

.github/workflows/update-metadata.main.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env kotlin
22
@file:Repository("https://repo1.maven.org/maven2/")
3-
@file:DependsOn("io.github.typesafegithub:github-workflows-kt:3.5.0")
3+
@file:DependsOn("io.github.typesafegithub:github-workflows-kt:3.6.0")
44
@file:DependsOn("it.krzeminski:snakeyaml-engine-kmp-jvm:4.0.1")
55
@file:DependsOn("org.eclipse.jgit:org.eclipse.jgit:7.4.0.202509020913-r")
66

@@ -86,9 +86,9 @@ fun writeToMetadataFile(actionRootDir: File, versionsWithTypings: List<String>)
8686
val structureToDump = mapOf(
8787
"versionsWithTypings" to versionsWithTypings
8888
)
89-
val dumpSettings = DumpSettings.builder()
90-
.setDefaultScalarStyle(ScalarStyle.DOUBLE_QUOTED)
91-
.build()
89+
val dumpSettings = DumpSettings(
90+
defaultScalarStyle = ScalarStyle.DOUBLE_QUOTED,
91+
)
9292
val dump = Dump(dumpSettings)
9393
val yamlAsString = dump.dumpToString(structureToDump)
9494
actionRootDir.resolve("metadata.yml").writeText(yamlAsString)

0 commit comments

Comments
 (0)