Skip to content

Commit

Permalink
Update ndk and modernize CI
Browse files Browse the repository at this point in the history
Signed-off-by: Ruben Gees <[email protected]>
  • Loading branch information
rubengees committed May 21, 2020
1 parent 90ebfb6 commit 841be28
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v2.1.1

- name: Check Gradle wrapper
uses: gradle/[email protected].2
uses: gradle/[email protected].3

- name: Set up JDK 11
uses: actions/[email protected]
with:
java-version: 11

- name: Set up Gradle Cache
uses: actions/cache@v1.1.2
uses: actions/cache@v1.2.0
with:
path: ~/.gradle/caches
key: ${{ runner.OS }}-gradle-${{ hashFiles('**/versions.gradle') }}
Expand All @@ -38,14 +38,14 @@ jobs:
run: ./gradlew ktlintCheck detekt build bundle

- name: Store reports
uses: actions/upload-artifact@v1.0.0
uses: actions/upload-artifact@v2.0.1
if: always()
with:
name: Reports
path: build/reports

- name: Store outputs
uses: actions/upload-artifact@v1.0.0
uses: actions/upload-artifact@v2.0.1
if: always()
with:
name: Outputs
Expand All @@ -58,19 +58,19 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v2.1.1
with:
fetch-depth: '0'

- name: Download outputs
uses: actions/download-artifact@v1
uses: actions/download-artifact@v2.0.1
with:
name: Outputs
path: build/outputs

- id: calculate-commit-range
name: Calculate commit range
uses: actions/github-script@0.8.0
uses: actions/github-script@v1.1.0
with:
github-token: ${{github.token}}
previews: 'antiope-preview'
Expand Down
2 changes: 1 addition & 1 deletion gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ext {
minSdkVersion = 21
targetSdkVersion = 29
compileSdkVersion = 29
ndkVersion = "21.0.6113669"
ndkVersion = "21.1.6352462"

// Java
javaVersion = JavaVersion.VERSION_1_8
Expand Down

0 comments on commit 841be28

Please sign in to comment.