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:33 UTC

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

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: