From e98155e051f215f270e9ca8fc2cf0bb5e7b4fd23 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 17:27:12 +0000 Subject: [PATCH 1/2] chore: Bump coroutines from 1.10.2 to 1.11.0 Bumps `coroutines` from 1.10.2 to 1.11.0. Updates `org.jetbrains.kotlinx:kotlinx-coroutines-test` from 1.10.2 to 1.11.0 - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.10.2...1.11.0) Updates `org.jetbrains.kotlinx:kotlinx-coroutines-swing` from 1.10.2 to 1.11.0 - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.10.2...1.11.0) --- updated-dependencies: - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-swing dependency-version: 1.11.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-test dependency-version: 1.11.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 785dc04..c394b43 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -5,7 +5,7 @@ android-compileSdk = "36" android-minSdk = "28" android-targetSdk = "36" compose = "1.11.1" -coroutines = "1.10.2" +coroutines = "1.11.0" detekt = "1.23.8" dokka = "2.2.0" kotest = "6.1.11" From 1c6ca440a98c1f2a2d97729e693602ab6ef93428 Mon Sep 17 00:00:00 2001 From: Messias Junior Date: Wed, 24 Jun 2026 18:31:08 +0100 Subject: [PATCH 2/2] dont upload coverage report --- .github/workflows/report-coverage.yml | 57 --------------------------- .github/workflows/verify.yml | 19 --------- 2 files changed, 76 deletions(-) delete mode 100644 .github/workflows/report-coverage.yml diff --git a/.github/workflows/report-coverage.yml b/.github/workflows/report-coverage.yml deleted file mode 100644 index 9032aae..0000000 --- a/.github/workflows/report-coverage.yml +++ /dev/null @@ -1,57 +0,0 @@ -name: Report coverage -run-name: Report coverage -on: - push: - branches: - - main - workflow_dispatch: - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -jobs: - report-coverage: - name: Report Coverage - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v6 - - - name: Setup Java - uses: actions/setup-java@v5 - with: - distribution: 'jetbrains' - java-version: '21' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Setup Gradle - uses: gradle/actions/setup-gradle@v6 - with: - add-job-summary: 'on-failure' - cache-read-only: false - cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} - - - name: Run verification tasks - id: gradle_run - run: ./gradlew koverXmlReport - - - name: umami-api - Upload coverage report - uses: qltysh/qlty-action/coverage@v2 - with: - token: ${{ secrets.QLTY_COVERAGE_TOKEN }} - files: umami-api/build/reports/kover/report.xml - format: "jacoco" - skip-errors: false - add-prefix: umami-api/src/commonMain/kotlin/ - - - name: umami - Upload coverage report - uses: qltysh/qlty-action/coverage@v2 - with: - token: ${{ secrets.QLTY_COVERAGE_TOKEN }} - files: umami/build/reports/kover/report.xml - format: "jacoco" - skip-errors: false - add-prefix: umami/src/commonMain/kotlin/ - validate-file-threshold: 70 diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 1e44429..22739b1 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -29,22 +29,3 @@ jobs: - name: Check code style run: ./gradlew detekt koverVerify koverXmlReport - - - name: umami-api - Upload coverage report - uses: qltysh/qlty-action/coverage@v2 - with: - token: ${{ secrets.QLTY_COVERAGE_TOKEN }} - files: umami-api/build/reports/kover/report.xml - format: "jacoco" - skip-errors: false - add-prefix: umami-api/src/commonMain/kotlin/ - - - name: umami - Upload coverage report - uses: qltysh/qlty-action/coverage@v2 - with: - token: ${{ secrets.QLTY_COVERAGE_TOKEN }} - files: umami/build/reports/kover/report.xml - format: "jacoco" - skip-errors: false - add-prefix: umami/src/commonMain/kotlin/ - validate-file-threshold: 70