Browse Source

fix(action): update condition for Android 14 kernel version 6.1 to include sublevel check

Co-authored-by: Copilot <copilot@github.com>
TheWildJames 4 months ago
parent
commit
d2b84c64cb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .github/actions/susfs/action.yml

+ 1 - 1
.github/actions/susfs/action.yml

@@ -118,7 +118,7 @@ runs:
           SHOULD_FIX=1
         elif [[ "${{ inputs.android_version }}" = "android14" && "${{ inputs.kernel_version }}" = "5.15" && "${{ inputs.sublevel }}" -le 148 && "${{ inputs.os_patch_level }}" != "2024-05" ]]; then
           SHOULD_FIX=1
-        elif [[ "${{ inputs.android_version }}" = "android14" && "${{ inputs.kernel_version }}" = "6.1" ]]; then
+        elif [[ "${{ inputs.android_version }}" = "android14" && "${{ inputs.kernel_version }}" = "6.1" && "${{ inputs.sublevel }}" -le 75 && "${{ inputs.os_patch_level }}" != "2024-05" ]]; then
           SHOULD_FIX=1
         fi