Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit f968b21

Browse files
renovate[bot]renovate-botmsfjarvis
authored
chore(deps): update dependency org.jetbrains.kotlin:kotlin-test-junit to v1.7.0 (#1941)
Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: Harsh Shandilya <[email protected]>
1 parent 4c666cf commit f968b21

File tree

10 files changed

+22
-18
lines changed

10 files changed

+22
-18
lines changed

.github/renovate.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
{
88
"matchPackagePatterns": ["^androidx.compose"],
99
"groupName": "jetpack-compose"
10+
},
11+
{
12+
"matchPackagePatterns": ["^kotlin", "^org.jetbrains.kotlin"],
13+
"groupName": "kotlin"
1014
}
1115
]
1216
}

.github/workflows/deploy_github_releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Build release binaries
3030
uses: gradle/[email protected]
3131
with:
32-
arguments: :app:assembleFreeRelease :app:assembleNonFreeRelease :app:bundleNonFreeRelease
32+
arguments: --no-configuration-cache :app:assembleFreeRelease :app:assembleNonFreeRelease :app:bundleNonFreeRelease
3333
env:
3434
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
3535

.github/workflows/deploy_library_releases.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Upload binaries
3333
uses: gradle/[email protected]
3434
with:
35-
arguments: :${{ steps.task-select.outputs.PROJECT }}:publishAllPublicationsToMavenCentralRepository
35+
arguments: --no-configuration-cache :${{ steps.task-select.outputs.PROJECT }}:publishAllPublicationsToMavenCentralRepository
3636
env:
3737
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_PUBLISH_USERNAME }}
3838
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PUBLISH_PASSWORD }}
@@ -42,7 +42,7 @@ jobs:
4242
- name: Close and release repository
4343
uses: gradle/[email protected]
4444
with:
45-
arguments: closeAndReleaseRepository
45+
arguments: --no-configuration-cache closeAndReleaseRepository
4646
env:
4747
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_PUBLISH_USERNAME }}
4848
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PUBLISH_PASSWORD }}

.github/workflows/deploy_snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
3636
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
3737
with:
38-
arguments: collectFreeReleaseApks collectNonFreeReleaseApks -PsentryUploadMappings
38+
arguments: --no-configuration-cache collectFreeReleaseApks collectNonFreeReleaseApks -PsentryUploadMappings
3939

4040
- name: Clean secrets
4141
run: scripts/signing-cleanup.sh

.github/workflows/draft_new_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ jobs:
6969
# that the version number is already correct, and we only need to drop the
7070
# -SNAPSHOT suffix.
7171
if [[ "${CHECKOUT_REF}" == "develop" ]]; then
72-
./gradlew --no-daemon clearPreRelease
72+
./gradlew --no-configuration-cache --no-daemon clearPreRelease
7373
else
74-
./gradlew --no-daemon bumpPatch
74+
./gradlew --no-configuration-cache --no-daemon bumpPatch
7575
fi
7676
7777
# Commit changes to the versioning

.github/workflows/pull_request.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
if: "${{ steps.service-changed.outputs.result == 'true' }}"
4343
uses: gradle/[email protected]
4444
with:
45-
arguments: spotlessCheck
45+
arguments: --no-configuration-cache spotlessCheck
4646

4747
unit-tests:
4848
runs-on: ubuntu-latest
@@ -76,7 +76,7 @@ jobs:
7676
if: "${{ steps.service-changed.outputs.result == 'true' }}"
7777
uses: gradle/[email protected]
7878
with:
79-
arguments: test -PslimTests
79+
arguments: --no-configuration-cache test -PslimTests
8080

8181
- name: (Fail-only) Upload test report
8282
if: "${{ failure() }}"
@@ -117,7 +117,7 @@ jobs:
117117
if: "${{ steps.service-changed.outputs.result == 'true' }}"
118118
uses: gradle/[email protected]
119119
with:
120-
arguments: assembleFreeDebug assembleNonFreeDebug
120+
arguments: --no-configuration-cache assembleFreeDebug assembleNonFreeDebug
121121

122122
check-api:
123123
runs-on: ubuntu-latest
@@ -151,7 +151,7 @@ jobs:
151151
if: "${{ steps.service-changed.outputs.result == 'true' }}"
152152
uses: gradle/[email protected]
153153
with:
154-
arguments: apiCheck
154+
arguments: --no-configuration-cache apiCheck
155155

156156
lint-debug:
157157
runs-on: ubuntu-latest
@@ -185,7 +185,7 @@ jobs:
185185
if: "${{ steps.service-changed.outputs.result == 'true' }}"
186186
uses: gradle/[email protected]
187187
with:
188-
arguments: lintDebug
188+
arguments: --no-configuration-cache lintDebug
189189

190190
assemble-release-apks:
191191
runs-on: ubuntu-latest
@@ -219,4 +219,4 @@ jobs:
219219
if: "${{ steps.service-changed.outputs.result == 'true' }}"
220220
uses: gradle/[email protected]
221221
with:
222-
arguments: aNFR
222+
arguments: --no-configuration-cache aNFR

.github/workflows/shadow_job.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ jobs:
4444
env:
4545
GRADLE_VERSION_OVERRIDE_com_android_tools_build_gradle: ${{ matrix.agp-version }}
4646
with:
47-
arguments: check
47+
arguments: --no-configuration-cache check

.github/workflows/sync_crowdin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Download new translations from Crowdin
2121
uses: gradle/[email protected]
2222
with:
23-
arguments: crowdin
23+
arguments: --no-configuration-cache crowdin
2424
env:
2525
CROWDIN_LOGIN: ${{ secrets.CROWDIN_LOGIN }}
2626
CROWDIN_PROJECT_KEY: ${{ secrets.CROWDIN_PROJECT_KEY }}

.github/workflows/update_publicsuffix_data.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Download new publicsuffix data
2121
uses: gradle/[email protected]
2222
with:
23-
arguments: updatePSL
23+
arguments: --no-configuration-cache updatePSL
2424

2525
- name: Compare list changes
2626
run: if [[ $(git diff --binary --stat) != "" ]]; then echo "UPDATED=true" >> $GITHUB_ENV; fi
@@ -29,7 +29,7 @@ jobs:
2929
uses: gradle/[email protected]
3030
if: "${{ env.UPDATED == 'true' }}"
3131
with:
32-
arguments: :autofill-parser:test -PslimTests
32+
arguments: --no-configuration-cache :autofill-parser:test -PslimTests
3333

3434
- name: Create Pull Request
3535
id: cpr

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ compose = "1.2.0-alpha08"
55
coroutines = "1.6.2"
66
flowbinding = "1.2.0"
77
hilt = "2.42"
8-
kotlin = "1.6.21"
8+
kotlin = "1.7.0"
99
leakcanary = "2.9.1"
1010
lifecycle = "2.5.0-rc01"
1111

@@ -41,7 +41,7 @@ aps-zxingAndroidEmbedded = "com.github.android-password-store:zxing-android-embe
4141
build-agp = "com.android.tools.build:gradle:7.2.1"
4242
build-binarycompat = "org.jetbrains.kotlinx:binary-compatibility-validator:0.10.0"
4343
build-download = "de.undercouch:gradle-download-task:5.1.0"
44-
build-kotlin = "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21"
44+
build-kotlin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
4545
build-mavenpublish = "com.vanniktech:gradle-maven-publish-plugin:0.20.0"
4646
build-okhttp = "com.squareup.okhttp3:okhttp:4.9.3"
4747
build-semver = "com.vdurmont:semver4j:3.1.0"

0 commit comments

Comments
 (0)