From e843b00b53543253d7d5ad550e06718ae07ee8c7 Mon Sep 17 00:00:00 2001 From: tanya732 Date: Wed, 1 Apr 2026 15:27:49 +0530 Subject: [PATCH 1/2] Chore: Dependabot PRs --- .github/workflows/build-and-test.yml | 6 +++--- .github/workflows/rl-secure.yml | 2 +- build.gradle | 8 ++++---- gradle/wrapper/gradle-wrapper.properties | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 2a73268..508af01 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -17,15 +17,15 @@ jobs: java-version: 8 - name: Set up Gradle - uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0 + uses: gradle/actions/setup-gradle@39e147cb9de83bb9910b8ef8bd7fff0ee20fcd6f # v6.0.1 - name: Test and Assemble and ApiDiff with Gradle run: ./gradlew assemble apiDiff check jacocoTestReport --continue --console=plain - - uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de + - uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 with: flags: unittests - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: Reports path: lib/build/reports diff --git a/.github/workflows/rl-secure.yml b/.github/workflows/rl-secure.yml index 5789851..4ce2208 100644 --- a/.github/workflows/rl-secure.yml +++ b/.github/workflows/rl-secure.yml @@ -43,7 +43,7 @@ jobs: java-version: ${{ inputs.java-version }} - name: Set up Gradle - uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0 + uses: gradle/actions/setup-gradle@39e147cb9de83bb9910b8ef8bd7fff0ee20fcd6f # v6.0.1 - name: Test and Assemble and ApiDiff with Gradle run: ./gradlew assemble apiDiff check jacocoTestReport --continue --console=plain diff --git a/build.gradle b/build.gradle index c6214a5..d066c70 100644 --- a/build.gradle +++ b/build.gradle @@ -122,19 +122,19 @@ test { dependencies { implementation 'javax.servlet:javax.servlet-api:3.1.0' - implementation 'org.apache.commons:commons-lang3:3.18.0' + implementation 'org.apache.commons:commons-lang3:3.20.0' implementation 'com.google.guava:guava-annotations:r03' - implementation 'commons-codec:commons-codec:1.20.0' + implementation 'commons-codec:commons-codec:1.21.0' api 'com.auth0:auth0:1.45.1' api 'com.auth0:java-jwt:3.19.4' api 'com.auth0:jwks-rsa:0.23.0' - testImplementation 'org.bouncycastle:bcprov-jdk15on:1.64' + testImplementation 'org.bouncycastle:bcprov-jdk15on:1.70' testImplementation 'org.hamcrest:java-hamcrest:2.0.0.0' testImplementation 'org.hamcrest:hamcrest-core:1.3' testImplementation 'org.mockito:mockito-core:2.28.2' - testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1' + testImplementation 'org.junit.jupiter:junit-jupiter:5.14.2' testImplementation 'org.springframework:spring-test:4.3.30.RELEASE' testImplementation 'com.squareup.okhttp3:okhttp:4.12.0' } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 6499169..c51cbf1 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.2-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.4-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists From 6a7d7cb43d9a8d6645ca22780b50079d01a49e03 Mon Sep 17 00:00:00 2001 From: tanya732 Date: Thu, 2 Apr 2026 11:33:10 +0530 Subject: [PATCH 2/2] Removed bump for junit jupiter --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index d066c70..370b6ae 100644 --- a/build.gradle +++ b/build.gradle @@ -134,7 +134,7 @@ dependencies { testImplementation 'org.hamcrest:java-hamcrest:2.0.0.0' testImplementation 'org.hamcrest:hamcrest-core:1.3' testImplementation 'org.mockito:mockito-core:2.28.2' - testImplementation 'org.junit.jupiter:junit-jupiter:5.14.2' + testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1' testImplementation 'org.springframework:spring-test:4.3.30.RELEASE' testImplementation 'com.squareup.okhttp3:okhttp:4.12.0' }