diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 33579f461..44cfdce14 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -23,7 +23,7 @@ jobs: ] xcode: [ '15.4', - '16.1', + '16.2', ] steps: - uses: actions/checkout@v4 diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 43dc242b2..f379fbe8a 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -92,7 +92,7 @@ platform :ios do target_version = "Kingfisher-#{options[:version]}" swift_version = options[:swift_version] || "5.0" - xcode_version = options[:xcode_version] || "16.1" + xcode_version = options[:xcode_version] || "16.2" xcodes(version: xcode_version, select_for_current_build_only: true) @@ -142,7 +142,7 @@ platform :ios do end before_all do |lane| - xcode_version = ENV["XCODE_VERSION"] || "16.1" + xcode_version = ENV["XCODE_VERSION"] || "16.2" xcodes(version: xcode_version, select_for_current_build_only: true) end