diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 06c200e0..3e064389 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -1,4 +1,4 @@ -name: Build-with-macOS-12 +name: Build-with-macOS-latest on: push: branches: [ "main" ] @@ -7,12 +7,14 @@ on: jobs: build: - name: Build (macOS 12) - runs-on: macOS-12 + name: Build (latest) + runs-on: macOS-latest env: GIT_SSL_NO_VERIFY: true - DEVELOPER_DIR: /Applications/Xcode.app/Contents/Developer steps: + - uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: latest-stable - uses: actions/checkout@v1 - name: Clean run: make clean