diff --git a/.github/workflows/regenerate-snapshots.yml b/.github/workflows/regenerate-snapshots.yml index 2603e6fb96..840b0c6358 100644 --- a/.github/workflows/regenerate-snapshots.yml +++ b/.github/workflows/regenerate-snapshots.yml @@ -4,7 +4,7 @@ on: jobs: Generate: - runs-on: macos-14-xlarge + runs-on: macos-15-xlarge steps: - uses: actions/checkout@v4 @@ -15,14 +15,14 @@ jobs: - name: ๐Ÿ”จ Select Xcode uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: '15.1' + xcode-version: '16.0' - name: ๐Ÿงน Clear existing Snapshots run: | find ./Tests/SnapshotTests -name "__Snapshots__" -exec rm -rf {} + - name: ๐Ÿ“ธ Generate Snapshots run: | - xcodebuild test -project "${project}" -scheme "${scheme}" ${params} -destination "name=iPhone 15 Pro,OS=17.2" -destination "name=iPad (10th generation),OS=17.2" | xcpretty --utf --color + xcodebuild test -project "${project}" -scheme "${scheme}" ${params} -destination "name=iPhone 16 Pro,OS=18.0" -destination "name=iPad (10th generation),OS=18.0" | xcpretty --utf --color env: project: 'Adyen.xcodeproj' params: '-skipPackagePluginValidation'