From 7bef20171320d740731257850b9dc17f5de72f0b Mon Sep 17 00:00:00 2001 From: Go Takagi <15936908+shimastripe@users.noreply.github.com> Date: Thu, 19 Sep 2024 22:55:59 +0900 Subject: [PATCH] Fix Xcode 16 path --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/deploy_docc.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 8fea618..433cb5f 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -15,7 +15,7 @@ jobs: name: Analyze runs-on: macos-14 env: - DEVELOPER_DIR: "/Applications/Xcode_16_Release_Candidate.app/Contents/Developer" + DEVELOPER_DIR: "/Applications/Xcode_16.0.app/Contents/Developer" timeout-minutes: 120 permissions: security-events: write diff --git a/.github/workflows/deploy_docc.yml b/.github/workflows/deploy_docc.yml index 95e7f89..ae454ee 100644 --- a/.github/workflows/deploy_docc.yml +++ b/.github/workflows/deploy_docc.yml @@ -19,7 +19,7 @@ jobs: build: runs-on: macos-14 env: - DEVELOPER_DIR: "/Applications/Xcode_16_Release_Candidate.app/Contents/Developer" + DEVELOPER_DIR: "/Applications/Xcode_16.0.app/Contents/Developer" steps: - name: Checkout uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4