From df97907f4481d1eb9b1bf58ae9ebb9a5cdc375d4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 5 Jun 2026 05:58:01 +0000 Subject: [PATCH 1/2] fix(deps): update dependencies (minor/patch) --- .github/workflows/check_android.yml | 2 +- .github/workflows/check_code.yml | 6 +++--- .github/workflows/release.yml | 2 +- gradle/libs.versions.toml | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/check_android.yml b/.github/workflows/check_android.yml index f034c3d0..6d19ec8f 100644 --- a/.github/workflows/check_android.yml +++ b/.github/workflows/check_android.yml @@ -44,7 +44,7 @@ jobs: state: pending - name: Checkout repo - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: ref: ${{ steps.upstreambranch.outputs.head_ref }} persist-credentials: false diff --git a/.github/workflows/check_code.yml b/.github/workflows/check_code.yml index a941f5a4..a942c148 100644 --- a/.github/workflows/check_code.yml +++ b/.github/workflows/check_code.yml @@ -27,7 +27,7 @@ jobs: get-version: runs-on: ubuntu-latest steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: persist-credentials: false - name: Get ktlint version @@ -49,7 +49,7 @@ jobs: pull-requests: write checks: write steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: persist-credentials: false @@ -82,7 +82,7 @@ jobs: needs: [ ktlint ] runs-on: ubuntu-latest steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: persist-credentials: false diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e3c3f8c0..aebe300a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: if: ${{ github.repository_owner == 'turtton' }} steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: persist-credentials: false diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 0b8bbddb..9a9feb99 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -6,13 +6,13 @@ minSdk = "24" targetSdk = "36" # Kotlin -kotlin = "2.3.21" +kotlin = "2.4.0" ksp = "2.3.9" kotlinter = "5.5.0" detekt = "1.23.8" # AndroidX -androidx-core = "1.18.0" +androidx-core = "1.19.0" androidx-appcompat = "1.7.1" androidx-constraintlayout = "2.2.1" androidx-navigation = "2.9.8" @@ -44,7 +44,7 @@ kotlinx-datetime = "0.8.0-0.6.x-compat" youtubedl-android = "0.18.1" media3 = "1.10.1" coil = "2.7.0" -arrow = "2.2.2.1" +arrow = "2.2.3" ktlint = "1.8.0" # Testing From 305a67964ef017f1d6b2cc7ec4f12ed0a719d66d Mon Sep 17 00:00:00 2001 From: turtton Date: Fri, 5 Jun 2026 22:24:13 +0900 Subject: [PATCH 2/2] fix(build): bump compileSdk to 37 to match androidx.core 1.19.0 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 9a9feb99..94e780b9 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,7 +1,7 @@ [versions] # Android agp = "9.2.1" -compileSdk = "36" +compileSdk = "37" minSdk = "24" targetSdk = "36"