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

ntimofeev pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cayenne.git


The following commit(s) were added to refs/heads/master by this push:
     new f9b76436f GitHub Actions  - add full support for Java 21  - add 
optional Java 22
f9b76436f is described below

commit f9b76436f05b488af503dd7b25a8b699c7059cc2
Author: Nikita Timofeev <[email protected]>
AuthorDate: Wed Jun 12 12:44:17 2024 +0400

    GitHub Actions
     - add full support for Java 21
     - add optional Java 22
---
 .github/workflows/verify-deploy-on-push.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/verify-deploy-on-push.yml 
b/.github/workflows/verify-deploy-on-push.yml
index 43179d48e..51784e561 100644
--- a/.github/workflows/verify-deploy-on-push.yml
+++ b/.github/workflows/verify-deploy-on-push.yml
@@ -24,15 +24,15 @@ jobs:
   verify:
     runs-on: ubuntu-latest
     name: JDK ${{ matrix.jdk }}, DB ${{ matrix.db-profile }}
-    continue-on-error: ${{ matrix.jdk == '21' }}
+    continue-on-error: ${{ matrix.jdk == '22' }}
     if: github.repository == 'apache/cayenne'
 
     strategy:
       matrix:
-        jdk: [11, 17]
+        jdk: [11, 17, 21]
         db-profile: [hsql, h2, derby, mysql-tc, postgres-tc, sqlserver-tc]
         include:
-          - jdk: 21
+          - jdk: 22
             db-profile: postgres-tc
       fail-fast: false # finish all jobs anyway
 

Reply via email to