From bc4f5eb3346a09223bfe3e693908167aeb55f1df Mon Sep 17 00:00:00 2001 From: Daniel Widdis Date: Thu, 17 Oct 2024 22:08:09 -0700 Subject: [PATCH] Set warning-mode none for gradle build Signed-off-by: Daniel Widdis --- .github/workflows/integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 70f316c..262af43 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -39,12 +39,12 @@ jobs: - uses: actions/setup-java@v4 with: distribution: "temurin" - java-version: "11" + java-version: "21" - name: Assemble OpenSearch if: steps.cache-restore.outputs.cache-hit != 'true' working-directory: opensearch - run: ./gradlew :distribution:archives:linux-tar:assemble + run: ./gradlew :distribution:archives:linux-tar:assemble --warning-mode none - name: Save Cached Build if: steps.cache-restore.outputs.cache-hit != 'true'