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

Bump actions/checkout from 2.3.4 to 2.3.5 #154

Merged
merged 1 commit into from
Oct 24, 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
10 changes: 5 additions & 5 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
steps:
- name: Checkout Repository
if: ${{ github.event_name != 'pull_request_target' }}
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2.3.5
- name: Checkout Repository PR
if: ${{ github.event_name == 'pull_request_target' }}
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2.3.5
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: set up JDK 11
Expand All @@ -36,10 +36,10 @@ jobs:
steps:
- name: Checkout Repository
if: ${{ github.event_name != 'pull_request_target' }}
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2.3.5
- name: Checkout Repository PR
if: ${{ github.event_name == 'pull_request_target' }}
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2.3.5
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Copy secure values
Expand All @@ -63,7 +63,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.3.5
- name: set up JDK 11
uses: actions/setup-java@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ jobs:
steps:
- name: Checkout repository
if: ${{ github.event_name != 'pull_request_target' }}
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2.3.5
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2

- name: Checkout repository PR
if: ${{ github.event_name == 'pull_request_target' }}
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2.3.5
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down