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:55:44 UTC

[camel-spring-boot] branch master updated (0aecb7e -> ba510b1)

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-spring-boot.git.


    from 0aecb7e  Polished
     new 22173f5  ASF Deploy Action: Do not persist credentials for checkout action
     new ba510b1  Sync Master Action: Do not persist credentials in checkout action

The 2 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 ++
 2 files changed, 6 insertions(+)


[camel-spring-boot] 01/02: ASF Deploy Action: Do not persist credentials for 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-spring-boot.git

commit 22173f5abfa2a5bc106cdd83398686fab3a8d973
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Feb 1 14:52:25 2021 +0100

    ASF Deploy Action: Do not persist credentials for 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 2d0a70a..2e30cdf 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-spring-boot] 02/02: 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-spring-boot.git

commit ba510b1f7e3f52e23040901e0327eca8b0a4b435
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Feb 1 14:55:07 2021 +0100

    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 a01c8b0..bb7ab10 100644
--- a/.github/workflows/automatic-sync-master.yml
+++ b/.github/workflows/automatic-sync-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-spring-boot Project
         run: ./mvnw -V --no-transfer-progress clean install -DskipTests