diff --git a/.github/workflows/commit-ci.yml b/.github/workflows/commit-ci.yml index 713a48f6a3..046c98aca2 100644 --- a/.github/workflows/commit-ci.yml +++ b/.github/workflows/commit-ci.yml @@ -21,7 +21,7 @@ jobs: BUILD_ABI: armeabi-v7a,arm64-v8a,x86,x86_64 steps: - name: Fetch source code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: submodules: recursive fetch-depth: 0 @@ -54,7 +54,7 @@ jobs: ./gradlew :app:calculateNativeCacheHash - name: Fetch JNI cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: jni-cache with: path: "app/prebuilt" @@ -80,7 +80,7 @@ jobs: run: cp -R app/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib app/prebuilt - name: Upload APK artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: trime-${{ matrix.os }} path: app/build/outputs/apk/debug/ @@ -88,7 +88,7 @@ jobs: retention-days: 90 - name: Upload APK artifact (ARM64_V8A only) - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: trime-arm64-v8a-${{ matrix.os }} path: app/build/outputs/apk/debug/*arm64-v8a-*.apk @@ -96,7 +96,7 @@ jobs: retention-days: 90 - name: Upload JNI artifact (librime_jni.so) - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: librime_jni-${{ matrix.os }} path: app/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/* diff --git a/.github/workflows/nightly-ci.yml b/.github/workflows/nightly-ci.yml index ccef66bab6..7fabf7fb53 100644 --- a/.github/workflows/nightly-ci.yml +++ b/.github/workflows/nightly-ci.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: submodules: recursive fetch-depth: 0 @@ -42,7 +42,7 @@ jobs: ./gradlew :app:calculateNativeCacheHash - name: Fetch JNI cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: jni-cache with: path: "app/prebuilt" diff --git a/.github/workflows/pull-request-ci.yml b/.github/workflows/pull-request-ci.yml index a815bbc07f..2f5e9aabdb 100644 --- a/.github/workflows/pull-request-ci.yml +++ b/.github/workflows/pull-request-ci.yml @@ -28,7 +28,7 @@ jobs: BUILD_ABI: armeabi-v7a,arm64-v8a,x86,x86_64 steps: - name: Fetch source code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: submodules: recursive fetch-depth: 0 @@ -61,7 +61,7 @@ jobs: ./gradlew :app:calculateNativeCacheHash - name: Fetch JNI cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: jni-cache with: path: "app/prebuilt" @@ -87,7 +87,7 @@ jobs: run: cp -R app/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib app/prebuilt - name: Upload APK artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: trime-${{ matrix.os }} path: app/build/outputs/apk/debug/ diff --git a/.github/workflows/release-ci.yml b/.github/workflows/release-ci.yml index c2cef3bebd..9996fdbf6f 100644 --- a/.github/workflows/release-ci.yml +++ b/.github/workflows/release-ci.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: submodules: recursive fetch-depth: 0 @@ -41,7 +41,7 @@ jobs: ./gradlew :app:calculateNativeCacheHash - name: Fetch JNI cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: jni-cache with: path: "app/prebuilt"