You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by mg...@apache.org on 2022/03/23 12:03:48 UTC

[avro] 01/01: Try to build with JDK 18 (stable) and 19 (early access)

This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch build-on-java-19
in repository https://gitbox.apache.org/repos/asf/avro.git

commit 0eec0c35dd3435112d584f69e7ac950280a058ec
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
AuthorDate: Wed Mar 23 14:02:50 2022 +0200

    Try to build with JDK 18 (stable) and 19 (early access)
    
    Signed-off-by: Martin Tzvetanov Grigorov <mg...@apache.org>
---
 .github/workflows/test-lang-java.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/test-lang-java.yml b/.github/workflows/test-lang-java.yml
index ef384a6..c3a6098 100644
--- a/.github/workflows/test-lang-java.yml
+++ b/.github/workflows/test-lang-java.yml
@@ -43,7 +43,8 @@ jobs:
         - '8'
         - '11'
         - '17'
-        - '18-ea'
+        - '18'
+        - '19'
     steps:
       - uses: actions/checkout@v2