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 <anco...@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: