Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Github actions: Do not persist credentials for Checkout action #596

Merged
merged 1 commit into from
Feb 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci-build-camel-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Set up JDK 11
uses: AdoptOpenJDK/install-jdk@v1
with:
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Set up JDK 11
uses: AdoptOpenJDK/install-jdk@v1
with:
Expand All @@ -66,6 +68,8 @@ jobs:
- '14'
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Set up JDK - ${{ matrix.java }}
uses: AdoptOpenJDK/install-jdk@v1
with:
Expand Down Expand Up @@ -104,6 +108,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Set up JDK 11
uses: AdoptOpenJDK/install-jdk@v1
with:
Expand Down Expand Up @@ -136,6 +142,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Set up JDK 11
uses: AdoptOpenJDK/install-jdk@v1
with:
Expand Down Expand Up @@ -166,6 +174,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:
Expand Down