From 82943ca13887b8193b35dbef62cfb85f550a5529 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 13 Nov 2024 14:08:17 +0000 Subject: [PATCH 1/2] Update non-major netty dependencies to v4.1.115.Final --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index b9b09f1af..e64728dcf 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ prevVersion=1.3.2 # rxjava.version=2.2.21 reactive-streams.version=1.0.4 -netty.version=4.1.99.Final +netty.version=4.1.115.Final jctools.version=2.1.2 annotations.version=16.0.3 dagger.version=2.27 From df6ff62a7ecfca75a2551370709685a493696457 Mon Sep 17 00:00:00 2001 From: David Sondermann Date: Wed, 13 Nov 2024 14:24:25 +0000 Subject: [PATCH 2/2] Switch to temurin JDK and add JDK 11 for integration tests --- .github/workflows/check.yml | 8 +++++--- .github/workflows/publish.yml | 4 ++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 13e096b0b..69e9955e3 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -15,7 +15,9 @@ jobs: - name: Setup Java uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4 with: - distribution: 'adopt' - java-version: '8' + distribution: temurin + java-version: | + 8 + 11 - name: Check - run: ./gradlew check javadoc \ No newline at end of file + run: ./gradlew check javadoc diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 81f96eed3..dbefbeccf 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,8 +14,8 @@ jobs: - name: Setup Java uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4 with: - distribution: 'adopt' - java-version: '8' + distribution: temurin + java-version: 8 - name: Publish to Maven Central env: ORG_GRADLE_PROJECT_signKey: ${{ secrets.SIGN_KEY }}