Skip to content

Commit 71af102

Browse files
committed
Update OS version used in CI
Also updates JDK & config along the way, as it seems that JVM 1.8 does not play nicely with the SDK on some part of the new OS somehow (unclear exactly why, but whatever).
1 parent aa5f1be commit 71af102

File tree

5 files changed

+8
-21
lines changed

5 files changed

+8
-21
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ on: [push, pull_request]
33
jobs:
44
build:
55
name: Build
6-
runs-on: ubuntu-18.04
6+
runs-on: ubuntu-22.04
77
steps:
88
- uses: actions/checkout@v2
99

10-
- name: Set up JDK 1.8
10+
- name: Set up JDK
1111
uses: actions/setup-java@v1
1212
with:
13-
java-version: 1.8
13+
java-version: 11
1414

1515
- name: Setup Android SDK
1616
uses: android-actions/setup-android@v2
@@ -27,7 +27,7 @@ jobs:
2727
deploy:
2828
name: Deploy to GitHub Releases
2929
needs: build
30-
runs-on: ubuntu-18.04
30+
runs-on: ubuntu-22.04
3131
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
3232
steps:
3333
- name: Get the APK

.idea/compiler.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

+2-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

-12
This file was deleted.

0 commit comments

Comments
 (0)