From 4cf139fd4d7e75e8a0ebc4618cbefde2c94bb984 Mon Sep 17 00:00:00 2001 From: Stefan Ceriu Date: Fri, 11 Aug 2023 15:14:00 +0300 Subject: [PATCH] Attempt to fix the CI --- .github/workflows/ci-integration-tests.yml | 2 +- .github/workflows/ci-lint.yml | 2 +- .github/workflows/ci-unit-tests.yml | 2 +- .github/workflows/nightly.yml | 2 +- fastlane/Fastfile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-integration-tests.yml b/.github/workflows/ci-integration-tests.yml index 694840f7f3..81fd1e95a4 100644 --- a/.github/workflows/ci-integration-tests.yml +++ b/.github/workflows/ci-integration-tests.yml @@ -12,7 +12,7 @@ on: jobs: integration-tests: name: Integration Tests - runs-on: macos-11 + runs-on: macos-13 concurrency: # When running on develop, use the sha to allow all runs of this workflow to run concurrently. diff --git a/.github/workflows/ci-lint.yml b/.github/workflows/ci-lint.yml index 4b346189dc..458fd030e6 100644 --- a/.github/workflows/ci-lint.yml +++ b/.github/workflows/ci-lint.yml @@ -12,7 +12,7 @@ on: jobs: lint: name: pod lib lint - runs-on: macos-11 + runs-on: macos-13 concurrency: # When running on develop, use the sha to allow all runs of this workflow to run concurrently. diff --git a/.github/workflows/ci-unit-tests.yml b/.github/workflows/ci-unit-tests.yml index ad5395fea7..90a46ffb3d 100644 --- a/.github/workflows/ci-unit-tests.yml +++ b/.github/workflows/ci-unit-tests.yml @@ -12,7 +12,7 @@ on: jobs: unit-tests: name: Unit Tests - runs-on: macos-11 + runs-on: macos-13 concurrency: # When running on develop, use the sha to allow all runs of this workflow to run concurrently. diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 3455e2bbc5..59ab296d94 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -10,7 +10,7 @@ jobs: unit-tests: name: Unit Tests with sanitizer checks - runs-on: macos-11 + runs-on: macos-13 steps: - uses: actions/checkout@v2 diff --git a/fastlane/Fastfile b/fastlane/Fastfile index a9fdad60b3..0e8ed17cfe 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -18,7 +18,7 @@ platform :ios do before_all do # Ensure used Xcode version - xcversion(version: "~> 13.2") + xcversion(version: "~> 14.3") end #### Pod ####