Skip to content
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
3 changes: 2 additions & 1 deletion .github/workflows/api-level-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 15
- name: Setup Android SDK
uses: android-actions/setup-android@v2
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ jobs:
# a pull request then we can checkout the head.
fetch-depth: 2

- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 15

# If this run was triggered by a pull request event, then checkout
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/sample-build-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 15
- name: Add execution right to the script
run: chmod +x gradlew
Expand All @@ -24,8 +25,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 15
- name: Add execution right to the script
run: chmod +x gradlew
Expand Down