From 94b9c539efb822471406341d62dd4e5cf4c97dca Mon Sep 17 00:00:00 2001 From: Oleksandr Kolodkin Date: Mon, 8 Jun 2026 17:41:20 +0300 Subject: [PATCH 1/2] Update GitHub Actions and Gradle wrapper configuration Signed-off-by: Oleksandr Kolodkin --- .github/workflows/github-actions-java8.yml | 2 +- gradle/wrapper/gradle-wrapper.properties | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/github-actions-java8.yml b/.github/workflows/github-actions-java8.yml index b497bfe..358deef 100644 --- a/.github/workflows/github-actions-java8.yml +++ b/.github/workflows/github-actions-java8.yml @@ -67,7 +67,7 @@ jobs: - name: Run OWASP dependency check if: matrix.os == 'windows-latest' # Only run on one platform - run: ./gradlew dependencyCheckAnalyze --no-daemon --stacktrace --continue + run: ./gradlew dependencyCheckAnalyze --no-daemon --stacktrace continue-on-error: true # Don't fail the build if dependency check has issues env: NVD_API_KEY: ${{ secrets.NVD_API_KEY }} diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 404b8d0..9b1d5eb 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -2,5 +2,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.4-bin.zip +networkTimeout=10000 +validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists From 469c47ac235b3f763534007d14ca3b3825122436 Mon Sep 17 00:00:00 2001 From: Oleksandr Kolodkin Date: Mon, 8 Jun 2026 18:02:16 +0300 Subject: [PATCH 2/2] fix: upgrade build JVM to Java 17 OWASP dependency-check-gradle 12.2.2 and Kotlin 2.4.0 both require JVM 11+. Output bytecode target remains Java 8 via sourceCompatibility. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/github-actions-java8.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/github-actions-java8.yml b/.github/workflows/github-actions-java8.yml index 358deef..e0824af 100644 --- a/.github/workflows/github-actions-java8.yml +++ b/.github/workflows/github-actions-java8.yml @@ -51,12 +51,12 @@ jobs: - name: Checkout repository code uses: actions/checkout@v6 - - name: Set up JDK 8 + - name: Set up JDK 17 uses: actions/setup-java@v5 with: - java-version: "8" + java-version: "17" distribution: "zulu" - check-latest: true # Get the latest Java 8 patch version + check-latest: true - name: Validate Gradle wrapper uses: gradle/actions/wrapper-validation@v4