From 56a856cc5f195538732ca47911cf11a2b5350413 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 20:39:35 +0000 Subject: [PATCH] Bump codecov/codecov-action from 4 to 5 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4 to 5. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4...v5) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-gradle.yml | 4 ++-- buildSrc/build.gradle.kts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-gradle.yml b/.github/workflows/ci-gradle.yml index e7c8416c69..1b50d679b9 100644 --- a/.github/workflows/ci-gradle.yml +++ b/.github/workflows/ci-gradle.yml @@ -55,8 +55,8 @@ jobs: - name: Run Kover Code Coverage run: ./gradlew koverXmlReportRelease - - uses: codecov/codecov-action@v4 + - uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: false - file: embrace-android-sdk/build/reports/kover/reportRelease.xml + files: embrace-android-sdk/build/reports/kover/reportRelease.xml diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 8373e105e6..6e230101bb 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -19,7 +19,7 @@ dependencies { implementation("com.android.tools.build:gradle:8.7.3") implementation("io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.7") implementation("org.jetbrains.kotlinx:binary-compatibility-validator:0.16.3") - implementation("org.jetbrains.kotlinx:kover-gradle-plugin:0.8.3") + implementation("org.jetbrains.kotlinx:kover-gradle-plugin:0.9.0") } // ensure the Kotlin + Java compilers both use the same language level.