diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index a9a7ef8..666266e 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -48,7 +48,7 @@ jobs: submodules: recursive - name: Select Xcode version - run: sudo xcode-select -s /Applications/Xcode_15.4.app/Contents/Developer + run: sudo xcode-select -s /Applications/Xcode_16.0.app/Contents/Developer - name: Install xcpretty run: gem install xcpretty @@ -59,7 +59,7 @@ jobs: -project V2er.xcodeproj \ -scheme V2er \ -sdk iphonesimulator \ - -destination 'platform=iOS Simulator,name=iPhone 15' \ + -destination 'platform=iOS Simulator,name=iPhone 16' \ -enableCodeCoverage YES \ -derivedDataPath build/DerivedData \ CODE_SIGN_IDENTITY="" \ diff --git a/.github/workflows/dependency-update.yml b/.github/workflows/dependency-update.yml index e7cc7b0..d61c428 100644 --- a/.github/workflows/dependency-update.yml +++ b/.github/workflows/dependency-update.yml @@ -18,7 +18,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: Select Xcode version - run: sudo xcode-select -s /Applications/Xcode_15.4.app/Contents/Developer + run: sudo xcode-select -s /Applications/Xcode_16.0.app/Contents/Developer - name: Update Swift packages run: | diff --git a/.github/workflows/ios-build-test.yml b/.github/workflows/ios-build-test.yml index e8d158f..0b8251c 100644 --- a/.github/workflows/ios-build-test.yml +++ b/.github/workflows/ios-build-test.yml @@ -22,7 +22,7 @@ jobs: submodules: recursive - name: Select Xcode version - run: sudo xcode-select -s /Applications/Xcode_15.4.app/Contents/Developer + run: sudo xcode-select -s /Applications/Xcode_16.0.app/Contents/Developer - name: Show Xcode version run: xcodebuild -version @@ -50,7 +50,7 @@ jobs: -project V2er.xcodeproj \ -scheme V2er \ -sdk iphonesimulator \ - -destination 'platform=iOS Simulator,name=iPhone 15' \ + -destination 'platform=iOS Simulator,name=iPhone 16' \ ONLY_ACTIVE_ARCH=YES \ CODE_SIGN_IDENTITY="" \ CODE_SIGNING_REQUIRED=NO | xcpretty --color @@ -61,7 +61,7 @@ jobs: -project V2er.xcodeproj \ -scheme V2er \ -sdk iphonesimulator \ - -destination 'platform=iOS Simulator,name=iPhone 15' \ + -destination 'platform=iOS Simulator,name=iPhone 16' \ ONLY_ACTIVE_ARCH=YES \ CODE_SIGN_IDENTITY="" \ CODE_SIGNING_REQUIRED=NO | xcpretty --color --test diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b4ba55d..64c8095 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,7 +34,7 @@ jobs: fetch-depth: 0 - name: Select Xcode version - run: sudo xcode-select -s /Applications/Xcode_15.4.app/Contents/Developer + run: sudo xcode-select -s /Applications/Xcode_16.0.app/Contents/Developer - name: Setup Ruby uses: ruby/setup-ruby@v1