Browse Source

Upgrade CI Xcode versions

onevcat 1 year ago
parent
commit
f11610b70d
2 changed files with 3 additions and 3 deletions
  1. 1 1
      .github/workflows/test.yaml
  2. 2 2
      fastlane/Fastfile

+ 1 - 1
.github/workflows/test.yaml

@@ -23,7 +23,7 @@ jobs:
         ]
         xcode: [
           '15.4',
-          '16.1',
+          '16.2',
         ]
     steps:
       - uses: actions/checkout@v4

+ 2 - 2
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