Skip to content

Commit

Permalink
chore(deps): update gradle/gradle-build-action action to v2.9.0 (#374)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored and Yash-Garg committed Nov 3, 2023
1 parent 9599b60 commit beae9ff
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/develop_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
cache: "gradle"

- name: Check codestyle
uses: gradle/gradle-build-action@v2.8.0
uses: gradle/gradle-build-action@v2.9.0
with:
arguments: spotlessCheck
gradle-home-cache-cleanup: true
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
run: printf 'y\ny\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses

- name: Build signed APKs
uses: gradle/gradle-build-action@v2.8.0
uses: gradle/gradle-build-action@v2.9.0
with:
arguments: assembleRelease
gradle-home-cache-cleanup: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
cache: "gradle"

- name: Check codestyle
uses: gradle/gradle-build-action@v2.8.0
uses: gradle/gradle-build-action@v2.9.0
with:
arguments: spotlessCheck
gradle-home-cache-cleanup: true
Expand All @@ -74,7 +74,7 @@ jobs:
cache: "gradle"

- name: Run lint on debug variants
uses: gradle/gradle-build-action@v2.8.0
uses: gradle/gradle-build-action@v2.9.0
with:
arguments: lintDebug
gradle-home-cache-cleanup: true
Expand All @@ -99,7 +99,7 @@ jobs:
cache: "gradle"

- name: Build debug APKs
uses: gradle/gradle-build-action@v2.8.0
uses: gradle/gradle-build-action@v2.9.0
with:
arguments: assembleDebug
gradle-home-cache-cleanup: true
Expand Down
4 changes: 4 additions & 0 deletions build-logic/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,22 @@ gradlePlugin {
register("spotless") {
id = "dev.yashgarg.qbit.spotless"
implementationClass = "dev.yashgarg.qbit.gradle.SpotlessPlugin"
version = "1.0.0"
}
register("githooks") {
id = "dev.yashgarg.qbit.githooks"
implementationClass = "dev.yashgarg.qbit.gradle.GitHooksPlugin"
version = "1.0.0"
}
register("kotlin-common") {
id = "dev.yashgarg.qbit.kotlin-common"
implementationClass = "dev.yashgarg.qbit.gradle.KotlinCommonPlugin"
version = "1.0.0"
}
register("kotlin-android") {
id = "dev.yashgarg.qbit.kotlin-android"
implementationClass = "dev.yashgarg.qbit.gradle.KotlinAndroidPlugin"
version = "1.0.0"
}
}
}
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ plugins {
alias(libs.plugins.binaryCompat) apply false
alias(libs.plugins.sentry) apply false

id("dev.yashgarg.qbit.spotless")
id("dev.yashgarg.qbit.githooks")
id("dev.yashgarg.qbit.kotlin-common")
alias(libs.plugins.custom.githooks)
alias(libs.plugins.custom.spotless)
alias(libs.plugins.kotlin.common)
}

val clean by tasks.existing(Delete::class) { delete(rootProject.layout.buildDirectory) }
Expand Down
4 changes: 4 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ axNavigation = "2.7.5"
axWork = "2.8.1"
binary_compat = "0.13.2"
coroutines = "1.7.3"
custom = "1.0.0"
googleMaterial = "1.10.0"
agp = "8.3.0-alpha12"
espresso = "3.5.1"
Expand Down Expand Up @@ -89,6 +90,9 @@ android-application = { id = "com.android.application", version.ref = "agp" }
android-library = { id = "com.android.library", version.ref = "agp" }
android-test = { id = "com.android.test", version.ref = "agp" }
binaryCompat = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version.ref = "binary_compat" }
custom-githooks = { id = "dev.yashgarg.qbit.githooks", version.ref = "custom" }
custom-spotless = { id = "dev.yashgarg.qbit.spotless", version.ref = "custom" }
kotlin-common = { id = "dev.yashgarg.qbit.kotlin-common", version.ref = "custom" }
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
kotlin-kapt = { id = "org.jetbrains.kotlin.kapt", version.ref = "kotlin" }
Expand Down
6 changes: 6 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,11 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"packageRules": [
{
"matchPackagePatterns": ["dev.yashgarg.qbit"],
"enabled": false
}
]
}

0 comments on commit beae9ff

Please sign in to comment.