diff --git a/.github/workflows/deploy_to_cocoapods.yml b/.github/workflows/deploy_to_cocoapods.yml index e7b958bf..88abf996 100644 --- a/.github/workflows/deploy_to_cocoapods.yml +++ b/.github/workflows/deploy_to_cocoapods.yml @@ -7,7 +7,7 @@ on: jobs: build: - runs-on: macos-12 + runs-on: macos-latest steps: - uses: actions/checkout@v1 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index e05cbaa1..eae10fb0 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -32,7 +32,7 @@ jobs: environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} - runs-on: macos-12 + runs-on: macos-latest steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0ffd8a37..0b1aa06d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,11 +8,22 @@ on: jobs: build: name: Run swiftlint - runs-on: macos-12 + runs-on: warp-macos-14-arm64-6x steps: - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: latest-stable + - uses: actions/checkout@v3 - - run: swiftlint Sources/ XMTPiOSExample/XMTPiOSExample - - run: pod lib lint --allow-warnings + + # Install swiftlint + - name: Install swiftlint + run: brew install swiftlint + + # Run swiftlint + - name: Run swiftlint + run: swiftlint Sources/ XMTPiOSExample/XMTPiOSExample + + # Lint the podspec + - name: Lint podspec + run: pod lib lint --allow-warnings diff --git a/XMTP.podspec b/XMTP.podspec index c5f17f92..1caacebd 100644 --- a/XMTP.podspec +++ b/XMTP.podspec @@ -33,7 +33,7 @@ Pod::Spec.new do |spec| spec.license = "MIT" spec.author = { "XMTP" => "eng@xmtp.com" } - spec.platform = :ios, '14.0', :macos, '11.0' + spec.platform = :ios, '16.0' spec.swift_version = '5.3'