This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/main by this push:
new aabb3a967 Install both JDK 11 & 17
aabb3a967 is described below
commit aabb3a967e3123677421b42dba8b03296a04202b
Author: Martin Tzvetanov Grigorov <[email protected]>
AuthorDate: Thu Aug 22 15:50:26 2024 +0300
Install both JDK 11 & 17
Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
---
.github/workflows/deploy-docs.yml | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/deploy-docs.yml
b/.github/workflows/deploy-docs.yml
index 269d52f32..b49e08931 100644
--- a/.github/workflows/deploy-docs.yml
+++ b/.github/workflows/deploy-docs.yml
@@ -144,11 +144,14 @@ jobs:
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
+
- name: Setup Temurin JDK
- uses: actions/setup-java@v3
+ uses: actions/setup-java@v4
with:
distribution: 'temurin'
- java-version: 11
+ java-version: |
+ 11
+ 17
- name: Build Java docs
run: |