From bb53e5d536aeba377b5f8877ad735973293ae200 Mon Sep 17 00:00:00 2001 From: Jenn Magder Date: Mon, 9 Sep 2024 16:21:24 -0700 Subject: [PATCH] [ci] Increase deprecation check minimum to macOS 14 (#7544) Bump Xcode analyze minimum check version macOS 13 -> macOS 14. The last bump https://github.com/flutter/packages/pull/7431 Related https://github.com/flutter/plugins/pull/5778 and https://github.com/flutter/flutter/issues/102835 --- .ci/targets/macos_platform_tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/targets/macos_platform_tests.yaml b/.ci/targets/macos_platform_tests.yaml index db7867d4a587..c3a5d83b11e2 100644 --- a/.ci/targets/macos_platform_tests.yaml +++ b/.ci/targets/macos_platform_tests.yaml @@ -15,7 +15,7 @@ tasks: - name: xcode analyze deprecation # Ensure we don't accidentally introduce deprecated code. script: .ci/scripts/tool_runner.sh - args: ["xcode-analyze", "--macos", "--macos-min-version=13.0", "--exclude=script/configs/exclude_xcode_deprecation.yaml"] + args: ["xcode-analyze", "--macos", "--macos-min-version=14.0", "--exclude=script/configs/exclude_xcode_deprecation.yaml"] - name: native test script: .ci/scripts/tool_runner.sh args: ["native-test", "--macos"]