Skip to content

Commit

Permalink
Update dependencies in renovate.json and libs.versions.toml (#605)
Browse files Browse the repository at this point in the history
* Update dependencies in renovate.json and libs.versions.toml

The commit includes modifications to the `renovate.json` and `libs.versions.toml` files. In `renovate.json`, a new field `versioningTemplate` with the value "hashicorp" has been added. Additionally, a new version extraction pattern has been introduced in `matchStrings`. In `libs.versions.toml`, the dependency `jetbrains-terraform` has been removed.

* Remove unused Jetbrains Terraform plugin and refactor build.gradle.kts for build-plugins

Subject: Refactor build-plugins build.gradle.kts

Remove unused Jetbrains Terraform plugin and refactor build.gradle.kts for build-plugins.

* Remove redundant Terraform configuration in `build-plugins` module
  • Loading branch information
ashdavies authored Oct 26, 2023
1 parent ece377a commit 3388584
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 17 deletions.
4 changes: 3 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
{
"datasourceTemplate": "github-releases",
"depNameTemplate": "hashicorp/terraform",
"extractVersionTemplate": "v(?<version>.*)",
"fileMatch": "^\\.github/workflows/.*\\.yaml",
"matchStrings": ["terraform_version: (?<currentValue>.*)"]
"matchStrings": ["terraform_version: (?<currentValue>.*)"],
"versioningTemplate": "hashicorp"
}
],
"extends": [
Expand Down
1 change: 0 additions & 1 deletion build-plugins/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ dependencies {
implementation(plugin(apollo.graphql))
implementation(plugin(cash.sqldelight))
implementation(plugin(diffplug.spotless))
implementation(plugin(jetbrains.terraform))
implementation(plugin(kotlin.compose))
implementation(plugin(kotlin.multiplatform))
implementation(plugin(kotlin.serialization))
Expand Down
14 changes: 0 additions & 14 deletions build-plugins/src/main/kotlin/io.ashdavies.terraform.gradle.kts

This file was deleted.

1 change: 0 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ google-cloud-jib = "com.google.cloud.tools.jib:3.4.0"
google-services = { id = "com.google.gms.google-services", version.ref = "google-services" }
gradle-doctor = "com.osacky.doctor:0.8.1"
jetbrains-dokka = "org.jetbrains.dokka:1.9.10"
jetbrains-terraform = "org.jetbrains.gradle.terraform:1.5.2"
kotlin-compose = { id = "org.jetbrains.compose", version.ref = "jetbrains-compose" }
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "jetbrains-kotlin" }
kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "jetbrains-kotlin" }
Expand Down

0 comments on commit 3388584

Please sign in to comment.