This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/karaf-decanter.git
The following commit(s) were added to refs/heads/main by this push:
new 87cd8d66 Use JDK 11 on CI for now as JDK 17 requires additional
changes on Decanter
87cd8d66 is described below
commit 87cd8d666b035be103cfa4985689e519258a4614
Author: JB Onofré <[email protected]>
AuthorDate: Thu Feb 6 08:13:35 2025 +0100
Use JDK 11 on CI for now as JDK 17 requires additional changes on Decanter
---
.github/workflows/build.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index e4fad036..29872c6d 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -34,10 +34,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- - name: Set up JDK 17
+ - name: Set up JDK 11
uses: actions/setup-java@v4
with:
- java-version: '17'
+ java-version: '11'
distribution: 'temurin'
- name: Building
run: mvn -U -B -e clean install -DskipTests -Prat