renovate/lib/modules/manager/kotlin-script
Sebastian Poxhofer 19259a0383 feat!: categories (#16534)
Closes #13953

Co-authored-by: Rhys Arkins <rhys@arkins.net>
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>

BREAKING CHANGE: languages are now called categories instead
2023-07-04 19:21:52 +02:00
..
__fixtures__ feat(manager): add support for Kotlin Script (#16684) 2022-07-26 13:37:34 +02:00
extract.spec.ts feat(manager): add support for Kotlin Script (#16684) 2022-07-26 13:37:34 +02:00
extract.ts refactor: PackageFile -> PackageFileContent (#20502) 2023-02-19 12:43:48 +00:00
index.spec.ts feat(manager): add support for Kotlin Script (#16684) 2022-07-26 13:37:34 +02:00
index.ts feat!: categories (#16534) 2023-07-04 19:21:52 +02:00
readme.md docs(kotlin-script): remove metadata, rewrite (#20192) 2023-02-10 11:55:52 +01:00

Renovate supports upgrading dependencies in Kotlin Script files. Read the Kotlin Script docs to learn more. For example:

#!/usr/bin/env kotlin
@file:Repository("https://jitpack.io")
@file:DependsOn("com.github.krzema12:github-actions-kotlin-dsl:main-SNAPSHOT")
@file:DependsOn("org.eclipse.jgit:org.eclipse.jgit:4.6.0.201612231935-r")
@file:DependsOn("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:3.0.2")

println("Hello world!")

// ...

By default, Renovate only scans files with the .main.kts extension and not .kts. This way Renovate avoids ambiguity with Gradle config files that use the .gradle.kts extension.

If you want to manage other Kotlin Script files, you may use the fileMatch config option to let Renovate update these files:

{
  "kotlin-script": {
    "fileMatch": ["^.*\\.kts$"]
  }
}