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

[camel-karaf] branch master updated (1a699d1 -> 940973f)

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

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git.


    from 1a699d1  Removed Jenkinsfile for JDK14
     new 18169dd  ASF Deploy Action: Do not persist credentials in checkout action
     new ab8df27  Automatic Sync master action: Do not persist credentials in checkout action
     new 940973f  Test karaf action: Do not persist credentials in checkout action

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/asf-snapshots-deploy.yml    | 4 ++++
 .github/workflows/automatic-sync-master.yml   | 2 ++
 .github/workflows/test-karaf-camel-master.yml | 2 ++
 3 files changed, 8 insertions(+)


[camel-karaf] 02/03: Automatic Sync master action: Do not persist credentials in checkout action

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit ab8df2758b0d06b1d37f8635bfa41ccd5a566506
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Feb 1 14:39:42 2021 +0100

    Automatic Sync master action: Do not persist credentials in checkout action
---
 .github/workflows/automatic-sync-master.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/automatic-sync-master.yml b/.github/workflows/automatic-sync-master.yml
index c85bb50..ea4d9cd 100644
--- a/.github/workflows/automatic-sync-master.yml
+++ b/.github/workflows/automatic-sync-master.yml
@@ -32,6 +32,7 @@ jobs:
         uses: actions/checkout@v2
         with:
           repository: apache/camel
+          persist-credentials: false
           ref: master
           path: camel
       - name: Set Up Java
@@ -45,6 +46,7 @@ jobs:
         uses: actions/checkout@v2
         with:
           ref: master
+          persist-credentials: false
           fetch-depth: 0
       - name: Build Camel-karaf Project
         run: ./mvnw -V --no-transfer-progress clean install -DskipTests


[camel-karaf] 01/03: ASF Deploy Action: Do not persist credentials in checkout action

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 18169dd7b7e0a28cc94cfbcf7f79b90b429b11e7
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Feb 1 14:33:10 2021 +0100

    ASF Deploy Action: Do not persist credentials in checkout action
---
 .github/workflows/asf-snapshots-deploy.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/asf-snapshots-deploy.yml b/.github/workflows/asf-snapshots-deploy.yml
index ac7e20c..8884c70 100644
--- a/.github/workflows/asf-snapshots-deploy.yml
+++ b/.github/workflows/asf-snapshots-deploy.yml
@@ -30,6 +30,8 @@ jobs:
         java: [ '1.8' ]
     steps:
       - uses: actions/checkout@v2
+        with:
+          persist-credentials: false
       - name: Set up JDK ${{ matrix.java }}
         uses: actions/setup-java@v1
         with:
@@ -50,6 +52,8 @@ jobs:
       NEXUS_DEPLOY_PASSWORD: ${{ secrets.NEXUS_PW }}
     steps:
     - uses: actions/checkout@v2
+      with:
+        persist-credentials: false
     - name: Set up JDK 11
       uses: AdoptOpenJDK/install-jdk@v1
       with:


[camel-karaf] 03/03: Test karaf action: Do not persist credentials in checkout action

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 940973f1932269e069a0ef46188b317eb0acd9f6
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Feb 1 14:40:39 2021 +0100

    Test karaf action: Do not persist credentials in checkout action
---
 .github/workflows/test-karaf-camel-master.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/test-karaf-camel-master.yml b/.github/workflows/test-karaf-camel-master.yml
index ea46c19..a1962c2 100644
--- a/.github/workflows/test-karaf-camel-master.yml
+++ b/.github/workflows/test-karaf-camel-master.yml
@@ -30,6 +30,7 @@ jobs:
         uses: actions/checkout@v2
         with:
           repository: apache/camel
+          persist-credentials: false
           ref: master
           path: camel
       - name: Set Up Java
@@ -43,6 +44,7 @@ jobs:
         uses: actions/checkout@v2
         with:
           ref: master
+          persist-credentials: false
           fetch-depth: 0
       - name: Build Camel-karaf Project
         run: ./mvnw -V --no-transfer-progress clean install -DskipTests