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

[camel-karaf] 01/03: ASF Deploy Action: 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-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: