Skip to content

Commit 2e19154

Browse files
authored
Merge pull request #98 from winnerspiros/copilot/update-node-actions-for-android
Raise Android min API to 30 and update deprecated GitHub Actions
2 parents 10958d9 + 05902d0 commit 2e19154

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ jobs:
1616
contents: write
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020

2121
- name: Setup JDK 17
22-
uses: actions/setup-java@v4
22+
uses: actions/setup-java@v5
2323
with:
2424
distribution: microsoft
2525
java-version: 17
2626

2727
- name: Install .NET 8.0.x
28-
uses: actions/setup-dotnet@v4
28+
uses: actions/setup-dotnet@v5
2929
with:
3030
dotnet-version: "8.0.x"
3131

@@ -91,7 +91,7 @@ jobs:
9191
echo "apk_path=$APK" >> "$GITHUB_OUTPUT"
9292
9393
- name: Upload APK artifact
94-
uses: actions/upload-artifact@v4
94+
uses: actions/upload-artifact@v7
9595
with:
9696
name: osu-android-${{ github.ref_name }}
9797
path: ${{ steps.find_apk.outputs.apk_path }}

osu.Android.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<SupportedOSPlatformVersion>21.0</SupportedOSPlatformVersion>
3+
<SupportedOSPlatformVersion>30.0</SupportedOSPlatformVersion>
44
<RuntimeIdentifiers>android-x86;android-arm;android-arm64</RuntimeIdentifiers>
55
<AndroidPackageFormat>apk</AndroidPackageFormat>
66
<MandroidI18n>CJK;Mideast;Rare;West;Other;</MandroidI18n>

osu.Android/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="sh.ppy.osulazer" android:installLocation="auto">
3-
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="34" />
3+
<uses-sdk android:minSdkVersion="30" android:targetSdkVersion="34" />
44
<application android:allowBackup="true"
55
android:supportsRtl="true"
66
android:label="osu!"

0 commit comments

Comments
 (0)