diff --git a/.github/workflows/carthage.yml b/.github/workflows/carthage.yml index f21854ce..8f02e03a 100644 --- a/.github/workflows/carthage.yml +++ b/.github/workflows/carthage.yml @@ -2,13 +2,13 @@ name: Carthage on: [pull_request] jobs: check: - runs-on: macos-12 + runs-on: macos-13 steps: - name: Select Xcode version - run: sudo xcode-select -s '/Applications/Xcode_13.4.app/Contents/Developer' + run: sudo xcode-select -s '/Applications/Xcode_14.2.app/Contents/Developer' - name: Initialize Cartfile run: | tee Cartfile <<<"github \"algolia/instantsearch-ios\" \"${{ github.head_ref }}\"" carthage update --no-build sh ./Carthage/Checkouts/instantsearch-ios/carthage-prebuild - carthage build --use-xcframeworks --platform ios \ No newline at end of file + carthage build --use-xcframeworks --platform ios diff --git a/.github/workflows/pods.yml b/.github/workflows/pods.yml index f727b7f3..b7e0c230 100644 --- a/.github/workflows/pods.yml +++ b/.github/workflows/pods.yml @@ -2,7 +2,7 @@ name: Cocoapods on: [pull_request] jobs: lint-Insights: - runs-on: macos-12 + runs-on: macos-13 steps: - uses: actions/checkout@v4 - name: Select Xcode version @@ -10,7 +10,7 @@ jobs: - name: lint Insights run: pod lib lint --subspec="Insights" --allow-warnings lint-Core: - runs-on: macos-12 + runs-on: macos-13 steps: - uses: actions/checkout@v4 - name: Select Xcode version @@ -18,7 +18,7 @@ jobs: - name: lint Core run: pod lib lint --subspec="Core" --allow-warnings lint-UI: - runs-on: macos-12 + runs-on: macos-13 steps: - uses: actions/checkout@v4 - name: Select Xcode version @@ -26,7 +26,7 @@ jobs: - name: lint UI run: pod lib lint --subspec="UI" --allow-warnings lint-SwiftUI: - runs-on: macos-12 + runs-on: macos-13 steps: - uses: actions/checkout@v4 - name: Select Xcode version diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index d2b73de9..e231a7f3 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -4,7 +4,7 @@ on: [pull_request] jobs: test: - runs-on: macos-12 + runs-on: macos-13 env: ALGOLIA_APPLICATION_ID_1: ${{ secrets.ALGOLIA_APPLICATION_ID_1 }} ALGOLIA_ADMIN_KEY_1: ${{ secrets.ALGOLIA_ADMIN_KEY_1 }} @@ -17,7 +17,7 @@ jobs: - name: Run tests run: swift test test-xcode-16: - runs-on: macos-14 + runs-on: macos-15 env: ALGOLIA_APPLICATION_ID_1: ${{ secrets.ALGOLIA_APPLICATION_ID_1 }} ALGOLIA_ADMIN_KEY_1: ${{ secrets.ALGOLIA_ADMIN_KEY_1 }} diff --git a/Tests/InstantSearchCoreTests/Unit/DecodingErrorPrettyPrinterTests.swift b/Tests/InstantSearchCoreTests/Unit/DecodingErrorPrettyPrinterTests.swift index 592eaeb8..43428f82 100644 --- a/Tests/InstantSearchCoreTests/Unit/DecodingErrorPrettyPrinterTests.swift +++ b/Tests/InstantSearchCoreTests/Unit/DecodingErrorPrettyPrinterTests.swift @@ -38,7 +38,7 @@ class DecodingErrorPrettyPrinterTests: XCTestCase { prettyPrinter.description == "Decoding error: 'age': Expected Int value but found null instead." || prettyPrinter.description - == "Decoding error: 'age': Cannot get unkeyed decoding container -- found null value instead" + == "Decoding error: 'age': Cannot get value of type Int -- found null value instead" ) } }