Skip to content

Commit caeeaa1

Browse files
committed
Select Xcode 16 in workflows that analyse Swift
1 parent 5dc3d77 commit caeeaa1

8 files changed

+34
-0
lines changed

.github/workflows/__export-file-baseline-information.yml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__multi-language-autodetect.yml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__swift-autobuild.yml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__swift-custom-build.yml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pr-checks/checks/export-file-baseline-information.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ installGo: "true"
55
env:
66
CODEQL_ACTION_SUBLANGUAGE_FILE_COVERAGE: true
77
steps:
8+
- name: Use Xcode 16
9+
shell: bash
10+
if: runner.os == 'macOS'
11+
run: sudo xcode-select -s "/Applications/Xcode_16.app"
812
- uses: ./../action/init
913
id: init
1014
with:

pr-checks/checks/multi-language-autodetect.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ description: "An end-to-end integration test of a multi-language repository usin
33
operatingSystems: ["macos", "ubuntu"]
44
installGo: "true"
55
steps:
6+
- name: Use Xcode 16
7+
shell: bash
8+
if: runner.os == 'macOS'
9+
run: sudo xcode-select -s "/Applications/Xcode_16.app"
10+
611
- uses: ./../action/init
712
id: init
813
with:

pr-checks/checks/swift-autobuild.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ description: "Tests creation of a Swift database using autobuild"
33
versions: ["nightly-latest"]
44
operatingSystems: ["macos"]
55
steps:
6+
- name: Use Xcode 16
7+
shell: bash
8+
if: runner.os == 'macOS'
9+
run: sudo xcode-select -s "/Applications/Xcode_16.app"
610
- uses: ./../action/init
711
id: init
812
with:

pr-checks/checks/swift-custom-build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ installGo: "true"
66
env:
77
DOTNET_GENERATE_ASPNET_CERTIFICATE: "false"
88
steps:
9+
- name: Use Xcode 16
10+
shell: bash
11+
if: runner.os == 'macOS'
12+
run: sudo xcode-select -s "/Applications/Xcode_16.app"
913
- uses: ./../action/init
1014
id: init
1115
with:

0 commit comments

Comments
 (0)