From bb0ada12e6d1bb4ce1fd567b854bd6fd602da2db Mon Sep 17 00:00:00 2001 From: GT610 <79314033+GT-610@users.noreply.github.com> Date: Sat, 10 Jan 2026 20:03:37 +0800 Subject: [PATCH] bump: Update Android build tools and Actions version (#997) --- .github/workflows/analysis.yml | 2 +- .github/workflows/release.yml | 12 ++++++------ android/gradle/wrapper/gradle-wrapper.properties | 2 +- android/settings.gradle | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index b4cac067..07942723 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f3fc5efb..c308d59c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,10 +17,10 @@ permissions: jobs: releaseAndroid: name: Release android - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Flutter uses: subosito/flutter-action@v2 with: @@ -53,10 +53,10 @@ jobs: releaseLinux: name: Release linux - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Flutter uses: subosito/flutter-action@v2 - name: Install dependencies @@ -82,7 +82,7 @@ jobs: runs-on: windows-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Flutter uses: subosito/flutter-action@v2 - name: Build @@ -100,7 +100,7 @@ jobs: # runs-on: macos-latest # steps: # - name: Checkout - # uses: actions/checkout@v4 + # uses: actions/checkout@v6 # - name: Install Flutter # uses: subosito/flutter-action@v2 # - name: Build diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties index 3c85cfe0..74b269f3 100644 --- a/android/gradle/wrapper/gradle-wrapper.properties +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-all.zip diff --git a/android/settings.gradle b/android/settings.gradle index ee8fb598..947d2feb 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -19,7 +19,7 @@ pluginManagement { plugins { id "dev.flutter.flutter-plugin-loader" version "1.0.0" - id "com.android.application" version '8.6.0' apply false + id "com.android.application" version '8.9.1' apply false id "org.jetbrains.kotlin.android" version "2.1.21" apply false }