Skip to content

Commit

Permalink
#9: upgrade deprecated Node.js 16 actions
Browse files Browse the repository at this point in the history
  • Loading branch information
arburk committed Jan 28, 2024
1 parent 75d27e2 commit 7b9c247
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/android_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ jobs:
fetch-depth: 0

- name: set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle

- name: Cache SonarCloud packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
Expand Down Expand Up @@ -90,4 +90,6 @@ jobs:

- name: Check on CI failure
if: steps.perform-it.outcome != 'success'
run: exit 1
run: |
echo "Instrumented tests did not finish with success"
exit 1
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ android {
}
groups {
supportedSdks {
targetDevices.add(devices.nexus5api27)
//targetDevices.add(devices.nexus5api27)
targetDevices.add(devices.nexus5api28)
//targetDevices.add(devices.pixel3api30)
//targetDevices.add(devices.pixel6api33)
Expand Down

0 comments on commit 7b9c247

Please sign in to comment.