You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2023/02/28 08:33:55 UTC

[camel-k] branch main updated: fix: actions for 2.0

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

pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/main by this push:
     new 1dc6c7ef7 fix: actions for 2.0
1dc6c7ef7 is described below

commit 1dc6c7ef72af9491968ba92a0fdb73b50a45d767
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Tue Feb 28 09:31:35 2023 +0100

    fix: actions for 2.0
---
 .github/workflows/nightly-automatic-updates.yml |  6 +++---
 .github/workflows/nightly-native-test.yml       | 11 ++++++++---
 .github/workflows/nightly-release.yml           | 13 ++++++-------
 3 files changed, 17 insertions(+), 13 deletions(-)

diff --git a/.github/workflows/nightly-automatic-updates.yml b/.github/workflows/nightly-automatic-updates.yml
index 2398991b6..b2801c42f 100644
--- a/.github/workflows/nightly-automatic-updates.yml
+++ b/.github/workflows/nightly-automatic-updates.yml
@@ -48,15 +48,15 @@ jobs:
     - name: "Checkout code"
       uses: actions/checkout@v2
       with:
-        ref: release-1.10.x
+        ref: release-1.12.x
         persist-credentials: false
         submodules: recursive
     - name: Automatic updates on release-1.10.x
       uses: ./.github/actions/automatic-updates
       with:
-        branch-ref: "release-1.10.x"
+        branch-ref: "release-1.12.x"
         secretGithubToken: ${{ secrets.GITHUB_TOKEN }}
-        goVersion: "1.17.x"
+        goVersion: "1.18.x"
 
   v1_10_x:
     if: github.repository == 'apache/camel-k'
diff --git a/.github/workflows/nightly-native-test.yml b/.github/workflows/nightly-native-test.yml
index 14e4749a4..07262496a 100644
--- a/.github/workflows/nightly-native-test.yml
+++ b/.github/workflows/nightly-native-test.yml
@@ -26,9 +26,14 @@ on:
   workflow_dispatch:
 
 jobs:
-  strategy:
-    matrix:
-      ref-branch: [main, release-1.10.x, release-1.11.x]
+  native:
+    if: github.repository == 'apache/camel-k'
+    runs-on: macos-12
+
+    strategy:
+      fail-fast: false
+      matrix:
+        ref-branch: [main, release-1.10.x, release-1.12.x]
 
   native:
     if: github.repository == 'apache/camel-k'
diff --git a/.github/workflows/nightly-release.yml b/.github/workflows/nightly-release.yml
index 94ef0d89f..948cee80c 100644
--- a/.github/workflows/nightly-release.yml
+++ b/.github/workflows/nightly-release.yml
@@ -57,13 +57,13 @@ jobs:
     - name: "Checkout code"
       uses: actions/checkout@v2
       with:
-        ref: release-1.10.x
+        ref: release-1.12.x
         persist-credentials: false
         submodules: recursive
-    - name: release-1.10.x nightly
+    - name: release-1.12.x nightly
       uses: ./.github/actions/release-nightly
       with:
-        goVersion: "1.17.x"
+        goVersion: "1.18.x"
         javaVersion: "11"
         secretE2ECluster: ${{ secrets.E2E_CLUSTER_CONFIG }}
         secretE2EKube: ${{ secrets.E2E_KUBE_CONFIG }}
@@ -71,17 +71,17 @@ jobs:
         secretDockerHubPassword: ${{ secrets.TEST_DOCKER_HUB_PASSWORD }}
         secretGithubToken: ${{ secrets.GITHUB_TOKEN }}
 
-  v1_12_x:
+  v1_10_x:
     if: github.repository == 'apache/camel-k'
     runs-on: ubuntu-20.04
     steps:
     - name: "Checkout code"
       uses: actions/checkout@v2
       with:
-        ref: release-1.11.x
+        ref: release-1.10.x
         persist-credentials: false
         submodules: recursive
-    - name: release-1.11.x nightly
+    - name: release-1.10.x nightly
       uses: ./.github/actions/release-nightly
       with:
         goVersion: "1.17.x"
@@ -92,4 +92,3 @@ jobs:
         secretDockerHubPassword: ${{ secrets.TEST_DOCKER_HUB_PASSWORD }}
         secretGithubToken: ${{ secrets.GITHUB_TOKEN }}
 
-