diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 06a996a..7aef523 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -211,6 +211,8 @@ jobs: - name: "Publish Report" uses: codecov/codecov-action@v4.1.0 + with: + token: ${{ secrets.CODECOV_TOKEN }} publishSnapshot: runs-on: ubuntu-latest diff --git a/build.gradle.kts b/build.gradle.kts index 65dce66..a8c110f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -15,7 +15,7 @@ plugins { `jacoco-report-aggregation` id("pl.droidsonroids.jacoco.testkit") version "1.0.12" id("io.gitlab.arturbosch.detekt") version "1.23.4" - id("org.owasp.dependencycheck") version "9.0.7" + id("org.owasp.dependencycheck") version "9.0.9" // documentation id("org.jetbrains.dokka") version "1.9.10" @@ -131,10 +131,6 @@ gradlePlugin { testSourceSets(sourceSets.test.get(), functionalTestSourceSet) } -jacoco { - toolVersion = "0.8.11" -} - detekt { allRules = false source.from(files("src"))