From 347e155c236a1c554b177a049dc2be9d4f6f345c Mon Sep 17 00:00:00 2001 From: Adam Young Date: Mon, 23 Sep 2024 09:09:14 +0100 Subject: [PATCH] CONFIG: Update DEVELOPER_DIR in GH Actions to Xcode 16 (#211) --- .github/workflows/ci.yml | 2 +- .github/workflows/codeql.yml | 2 +- .github/workflows/integration.yml | 2 +- .github/workflows/lint.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ffab48f0..b80007d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ concurrency: cancel-in-progress: true env: - DEVELOPER_DIR: /Applications/Xcode_16_Release_Candidate.app/Contents/Developer + DEVELOPER_DIR: /Applications/Xcode_16.app/Contents/Developer jobs: build-test: diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 12765b4e..a1fe2ed5 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -17,7 +17,7 @@ concurrency: cancel-in-progress: true env: - DEVELOPER_DIR: /Applications/Xcode_16_Release_Candidate.app/Contents/Developer + DEVELOPER_DIR: /Applications/Xcode_16.app/Contents/Developer jobs: analyze: diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index a2772c31..ec4321b6 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -20,7 +20,7 @@ concurrency: cancel-in-progress: true env: - DEVELOPER_DIR: /Applications/Xcode_16_Release_Candidate.app/Contents/Developer + DEVELOPER_DIR: /Applications/Xcode_16.app/Contents/Developer jobs: integration-test: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d8353d21..05ea6ed6 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -21,7 +21,7 @@ jobs: name: SwiftLint runs-on: macos-14 env: - DEVELOPER_DIR: /Applications/Xcode_16_Release_Candidate.app/Contents/Developer + DEVELOPER_DIR: /Applications/Xcode_16.app/Contents/Developer steps: - name: Checkout uses: actions/checkout@v4