diff --git a/.github/workflows/cocoapods.yml b/.github/workflows/cocoapods.yml index 6bb48b897..87ed26074 100644 --- a/.github/workflows/cocoapods.yml +++ b/.github/workflows/cocoapods.yml @@ -24,7 +24,7 @@ jobs: # time, so this covers the Core spec and tests. pod-lib-lint-core: name: CocoaPods lib lint Core - runs-on: macos-14 + runs-on: macos-15 strategy: fail-fast: false matrix: @@ -55,7 +55,7 @@ jobs: # resources without any real gain. pod-lib-lint-subspecs: name: CocoaPods lib lint SubSpecs - runs-on: macos-14 + runs-on: macos-15 strategy: fail-fast: false matrix: diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 6c1f1d16b..402eb07f5 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -31,7 +31,7 @@ on: jobs: examples: - runs-on: macos-14 + runs-on: macos-15 strategy: fail-fast: false matrix: diff --git a/.github/workflows/service_generator.yml b/.github/workflows/service_generator.yml index 033d62ee4..1f48bb4ac 100644 --- a/.github/workflows/service_generator.yml +++ b/.github/workflows/service_generator.yml @@ -29,7 +29,7 @@ on: jobs: swift: - runs-on: macos-14 + runs-on: macos-15 strategy: fail-fast: false matrix: @@ -43,7 +43,7 @@ jobs: swift build --configuration ${{ matrix.CONFIGURATION }} xcodebuild: - runs-on: macos-14 + runs-on: macos-15 strategy: fail-fast: false matrix: diff --git a/.github/workflows/swiftpm.yml b/.github/workflows/swiftpm.yml index 0b1bf8daf..1a7197203 100644 --- a/.github/workflows/swiftpm.yml +++ b/.github/workflows/swiftpm.yml @@ -24,7 +24,7 @@ on: jobs: swift: # The swift command line only support build/testing for macOS on. - runs-on: macos-14 + runs-on: macos-15 strategy: fail-fast: false matrix: @@ -40,7 +40,7 @@ jobs: xcodebuild: # Job(s) to build for all the platforms to ensure that is working and the # tests are passing. - runs-on: macos-14 + runs-on: macos-15 strategy: fail-fast: false matrix: @@ -53,7 +53,7 @@ jobs: set -eu case "${{matrix.PLATFORM}}" in ios) - DESTINATION="platform=iOS Simulator,name=iPhone 14,OS=latest" + DESTINATION="platform=iOS Simulator,name=iPhone 16,OS=latest" ;; macos) DESTINATION="platform=macOS" @@ -65,7 +65,7 @@ jobs: DESTINATION="platform=visionOS Simulator,name=Apple Vision Pro,OS=latest" ;; watchos) - DESTINATION="platform=WatchOS Simulator,name=Apple Watch Series 7 (45mm),OS=latest" + DESTINATION="platform=WatchOS Simulator,name=Apple Watch Series 10 (46mm),OS=latest" ;; esac