diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-06-16 13:15:31 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-16 13:15:31 +0530 |
commit | c7e2174c441969b1da536f754a875fe23518f12a (patch) | |
tree | 35fa4783e9b31d0fbedd10f5281a14c19f3f9c0a | |
parent | 5d7fde8bc76ac9e880ff2a27e9887fc26ebfc1f8 (diff) |
Fix Crowdin GitHub Actions job (#1961)
* github: turn off configuration cache for Crowdin job
* gradle: bump ktfmt
-rw-r--r-- | .github/workflows/sync_crowdin.yml | 2 | ||||
-rw-r--r-- | build-logic/kotlin-plugins/src/main/kotlin/dev/msfjarvis/aps/gradle/SpotlessPlugin.kt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/sync_crowdin.yml b/.github/workflows/sync_crowdin.yml index 3f58942e..f3ed12f0 100644 --- a/.github/workflows/sync_crowdin.yml +++ b/.github/workflows/sync_crowdin.yml @@ -20,7 +20,7 @@ jobs: - name: Download new translations from Crowdin uses: gradle/gradle-build-action@v2.2.0 with: - arguments: crowdin + arguments: --no-configuration-cache crowdin env: CROWDIN_LOGIN: ${{ secrets.CROWDIN_LOGIN }} CROWDIN_PROJECT_KEY: ${{ secrets.CROWDIN_PROJECT_KEY }} diff --git a/build-logic/kotlin-plugins/src/main/kotlin/dev/msfjarvis/aps/gradle/SpotlessPlugin.kt b/build-logic/kotlin-plugins/src/main/kotlin/dev/msfjarvis/aps/gradle/SpotlessPlugin.kt index 3cf4c271..4ef94024 100644 --- a/build-logic/kotlin-plugins/src/main/kotlin/dev/msfjarvis/aps/gradle/SpotlessPlugin.kt +++ b/build-logic/kotlin-plugins/src/main/kotlin/dev/msfjarvis/aps/gradle/SpotlessPlugin.kt @@ -39,6 +39,6 @@ class SpotlessPlugin : Plugin<Project> { } private companion object { - private const val KTFMT_VERSION = "0.38" + private const val KTFMT_VERSION = "0.39" } } |