From 62d5edb38ce1db3e66baa8b6e278e75d137de500 Mon Sep 17 00:00:00 2001 From: Ethan Dye Date: Tue, 17 Sep 2024 19:07:13 -0600 Subject: [PATCH] Try using Xcode 16 Signed-off-by: Ethan Dye --- .github/workflows/codeql.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 9f9d10f..d67f1f1 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -27,7 +27,7 @@ jobs: # - https://gh.io/supported-runners-and-hardware-resources # - https://gh.io/using-larger-runners (GitHub.com only) # Consider using larger runners or machines with greater resources for possible analysis time improvements. - runs-on: 'macos-latest' + runs-on: macos-10.15 permissions: security-events: write packages: read @@ -49,9 +49,11 @@ jobs: # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs # queries: security-extended,security-and-quality - name: Build with Xcode - shell: bash - run: | - xcodebuild -scheme macSup2Srt build + uses: mxcl/xcodebuild@v3 + with: + xcode: 16 + platform: macOS + action: build - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3