From d58631a602881a07cf0b20c9ae10c8777b71b92f Mon Sep 17 00:00:00 2001 From: Ruslan Skorb Date: Wed, 18 Sep 2024 22:01:16 +0300 Subject: [PATCH] [.github] [workflows] [main.yml] Fix failing CI. https://github.com/actions/runner-images/issues/9577 --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a104078..20155a1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ jobs: iOS: runs-on: macos-13 env: - DEVELOPER_DIR: '/Applications/Xcode_15.0.1.app/Contents/Developer' + DEVELOPER_DIR: '/Applications/Xcode_15.1.app/Contents/Developer' steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 @@ -20,6 +20,8 @@ jobs: key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} restore-keys: | ${{ runner.os }}-pods- + - name: Delete Xcode.app + run: sudo rm -rf /Applications/Xcode.app - name: Install Pods run: bundle exec pod install --repo-update --project-directory=Example - name: Test