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:11:32 UTC

[camel] branch master updated (639eba1 -> 574c6ce)

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


    from 639eba1  Regen for commit deef3746a04f3219de39e59ca357bfa8c1ac2722
     new 653bdd3  ASF Deploy action yaml: Do not persist credentials in checkout action
     new 3446fd3  Master PR Build Action: Do not persist credentials in Checkout action
     new 574c6ce  Master Push build 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/master-pr-build.yml      | 4 +++-
 .github/workflows/master-push-build.yml    | 2 ++
 3 files changed, 9 insertions(+), 1 deletion(-)


[camel] 03/03: Master Push build 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.git

commit 574c6ce6cd4454c900ed3c7d2951a121675a6d03
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Feb 1 14:10:21 2021 +0100

    Master Push build action: Do not persist credentials in checkout action
---
 .github/workflows/master-push-build.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/master-push-build.yml b/.github/workflows/master-push-build.yml
index dff1447..3a0d8d7 100644
--- a/.github/workflows/master-push-build.yml
+++ b/.github/workflows/master-push-build.yml
@@ -29,6 +29,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:


[camel] 01/03: ASF Deploy action yaml: 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.git

commit 653bdd303478a6f056bd60fa377a0a4d444b0eff
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Feb 1 14:08:24 2021 +0100

    ASF Deploy action yaml: 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 898297a..fae4d79 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] 02/03: Master PR Build 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.git

commit 3446fd3379fe505207376a639fc07cc54d181672
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Feb 1 14:09:18 2021 +0100

    Master PR Build Action: Do not persist credentials in Checkout action
---
 .github/workflows/master-pr-build.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/master-pr-build.yml b/.github/workflows/master-pr-build.yml
index 9d82bae..5f380bc 100644
--- a/.github/workflows/master-pr-build.yml
+++ b/.github/workflows/master-pr-build.yml
@@ -28,7 +28,9 @@ jobs:
       matrix:
         java: [ '1.8' ]
     steps:
-    - uses: actions/checkout@v1
+    - uses: actions/checkout@v2
+      with:
+        persist-credentials: false
     - name: Set up JDK ${{ matrix.java }}
       uses: actions/setup-java@v1
       with: