Skip to content

Commit 841be28

Browse files
committed
Update ndk and modernize CI
Signed-off-by: Ruben Gees <[email protected]>
1 parent 90ebfb6 commit 841be28

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ jobs:
88

99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v2
11+
uses: actions/checkout@v2.1.1
1212

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

1616
- name: Set up JDK 11
1717
uses: actions/[email protected]
1818
with:
1919
java-version: 11
2020

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

4040
- name: Store reports
41-
uses: actions/upload-artifact@v1.0.0
41+
uses: actions/upload-artifact@v2.0.1
4242
if: always()
4343
with:
4444
name: Reports
4545
path: build/reports
4646

4747
- name: Store outputs
48-
uses: actions/upload-artifact@v1.0.0
48+
uses: actions/upload-artifact@v2.0.1
4949
if: always()
5050
with:
5151
name: Outputs
@@ -58,19 +58,19 @@ jobs:
5858

5959
steps:
6060
- name: Checkout
61-
uses: actions/checkout@v2
61+
uses: actions/checkout@v2.1.1
6262
with:
6363
fetch-depth: '0'
6464

6565
- name: Download outputs
66-
uses: actions/download-artifact@v1
66+
uses: actions/download-artifact@v2.0.1
6767
with:
6868
name: Outputs
6969
path: build/outputs
7070

7171
- id: calculate-commit-range
7272
name: Calculate commit range
73-
uses: actions/github-script@0.8.0
73+
uses: actions/github-script@v1.1.0
7474
with:
7575
github-token: ${{github.token}}
7676
previews: 'antiope-preview'

gradle/versions.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ext {
77
minSdkVersion = 21
88
targetSdkVersion = 29
99
compileSdkVersion = 29
10-
ndkVersion = "21.0.6113669"
10+
ndkVersion = "21.1.6352462"
1111

1212
// Java
1313
javaVersion = JavaVersion.VERSION_1_8

0 commit comments

Comments
 (0)