Browse Source

CI: Update minimum macOS version to 12 for building

Ryan Foster 3 months ago
parent
commit
c605aa6d84
1 changed files with 2 additions and 2 deletions
  1. 2 2
      .github/scripts/utils.zsh/check_macos

+ 2 - 2
.github/scripts/utils.zsh/check_macos

@@ -4,8 +4,8 @@ local macos_version=$(sw_vers -productVersion)
 
 log_group 'Install macOS build requirements'
 log_info 'Checking macOS version...'
-if ! is-at-least 11.0 ${macos_version}; then
-  log_error "Minimum required macOS version is 11.0, but running on macOS ${macos_version}"
+if ! is-at-least 12.0 ${macos_version}; then
+  log_error "Minimum required macOS version is 12.0, but running on macOS ${macos_version}"
   return 2
 else
   log_status "macOS ${macos_version} is recent"