diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 897c61a..0be84c3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,7 +27,7 @@ jobs: ./gradlew clean build - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: flags: unit-tests-${{ matrix.os }} fail_ci_if_error: true @@ -54,7 +54,7 @@ jobs: ./gradlew clean integrationTest - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: flags: integration-tests-${{ matrix.os }} fail_ci_if_error: true @@ -77,7 +77,7 @@ jobs: uses: paulhatch/semantic-version@v5.4.0 - name: Create GitHub tag and release - uses: softprops/action-gh-release@v2.0.5 + uses: softprops/action-gh-release@v2.2.0 with: tag_name: ${{ steps.version.outputs.version_tag }} generate_release_notes: true diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index d502398..cb2193b 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -12,7 +12,7 @@ guava = "33.4.0-jre" # test libs junit = "5.11.4" truth = "1.4.4" -mockito = "5.14.2" +mockito = "5.15.2" [libraries] spotbugs-annotations = { module = "com.github.spotbugs:spotbugs-annotations", version.ref = "spotbugs" }