From c61d8693ae57394d82c1379aa7b2bf32fccdcee9 Mon Sep 17 00:00:00 2001 From: Philipp Hofmann Date: Tue, 4 Oct 2022 16:59:29 +0200 Subject: [PATCH] ci: Fix Validate podspec (#2253) Since October 3rd the default Xcode version is 14.0.1, which breaks pod lib lint. Ideally, we fix the underlying issue but for now, let's keep using Xcode 13.4.1 for pod lib lint. --- .github/workflows/lint.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index cc3107bbee9..2397b2d7b87 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -45,6 +45,7 @@ jobs: runs-on: macos-12 steps: - uses: actions/checkout@v3 + - run: ./scripts/ci-select-xcode.sh - name: Validate Podspec run: pod lib lint --verbose shell: sh