You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2021/01/13 07:13:58 UTC

[camel-quarkus] branch master updated: Ensure JDK is set up for reporting step in nightly branch sync workflows

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

jamesnetherton pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/master by this push:
     new 149fcd2  Ensure JDK is set up for reporting step in nightly branch sync workflows
149fcd2 is described below

commit 149fcd2d30499cec2b7f632946ce4369b910f95c
Author: James Netherton <ja...@gmail.com>
AuthorDate: Wed Jan 13 07:13:13 2021 +0000

    Ensure JDK is set up for reporting step in nightly branch sync workflows
---
 .github/workflows/camel-master-cron.yaml   | 4 ++++
 .github/workflows/quarkus-master-cron.yaml | 4 ++++
 2 files changed, 8 insertions(+)

diff --git a/.github/workflows/camel-master-cron.yaml b/.github/workflows/camel-master-cron.yaml
index 72874d5..0ca1873 100644
--- a/.github/workflows/camel-master-cron.yaml
+++ b/.github/workflows/camel-master-cron.yaml
@@ -182,6 +182,10 @@ jobs:
           git config --local user.name "github-actions[bot]"
           git fetch origin master
           git rebase $(cat ~/build-data/master-sha.txt)
+      - name: Set up JDK 11
+        uses: AdoptOpenJDK/install-jdk@v1
+        with:
+          version: '11'
       - name: Report build status
         id: report
         run: |
diff --git a/.github/workflows/quarkus-master-cron.yaml b/.github/workflows/quarkus-master-cron.yaml
index 876c87a..37d092b 100644
--- a/.github/workflows/quarkus-master-cron.yaml
+++ b/.github/workflows/quarkus-master-cron.yaml
@@ -191,6 +191,10 @@ jobs:
           git config --local user.name "github-actions[bot]"
           git fetch origin master
           git rebase $(cat ~/build-data/master-sha.txt)
+      - name: Set up JDK 11
+        uses: AdoptOpenJDK/install-jdk@v1
+        with:
+          version: '11'
       - name: Report build status
         id: report
         run: |