diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 569d744..5433845 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_ACTOR: ${{ github.actor }} - name: Publish Test Report - uses: mikepenz/action-junit-report@bccf2e31636835cf0874589931c4116687171386 # v6 + uses: mikepenz/action-junit-report@3a81627bfac62268172037048872e8ebd4207e6d # v6 if: success() || failure() # always run even if the previous step fails with: report_paths: "**/build/test-results/test/TEST-*.xml" diff --git a/lib/build.gradle b/lib/build.gradle index cd12e06..c0b0158 100644 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -46,9 +46,9 @@ dependencies { testImplementation 'io.grpc:grpc-testing:1.80.0' testImplementation 'io.grpc:grpc-inprocess:1.80.0' - testImplementation platform('org.junit:junit-bom:6.0.3') - testImplementation 'org.junit.jupiter:junit-jupiter:6.0.3' - testImplementation 'org.junit.jupiter:junit-jupiter-api:6.0.3' + testImplementation platform('org.junit:junit-bom:6.1.0') + testImplementation 'org.junit.jupiter:junit-jupiter:6.1.0' + testImplementation 'org.junit.jupiter:junit-jupiter-api:6.1.0' testImplementation 'org.mockito:mockito-core:5.23.0' testImplementation 'org.mockito:mockito-junit-jupiter:5.23.0' testImplementation 'nl.jqno.equalsverifier:equalsverifier:4.5'