Skip to content

Commit bc196ec

Browse files
authored
Merge pull request #504 from dotnet/jfversluis-patch-1
Update macOS build config
2 parents 33e124a + 595bfa0 commit bc196ec

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build-all.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
os: [windows-latest, macos-13]
11+
os: [windows-latest, macos-14]
1212

1313
runs-on: ${{ matrix.os }}
1414

@@ -18,7 +18,7 @@ jobs:
1818

1919
# Remove when .NET 8 is default on hosted runners
2020
- name: Install .NET 8
21-
uses: actions/setup-dotnet@v3.2.0
21+
uses: actions/setup-dotnet@v4.0.1
2222
with:
2323
dotnet-version: 8.0
2424

@@ -27,7 +27,7 @@ jobs:
2727
# if: runner.os == 'macOS' # reenable when .NET 8 is default on hosted runners
2828

2929
- name: Select Xcode Version
30-
run: sudo xcode-select -s /Applications/Xcode_15.0.1.app
30+
run: sudo xcode-select -s /Applications/Xcode_15.4.app
3131
if: runner.os == 'macOS' # Remove when Xcode 15+ is default on the hosted runners
3232

3333
- name: Find and build all C# projects

.github/workflows/build-pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
os: [windows-latest, macos-13]
13+
os: [windows-latest, macos-14]
1414

1515
runs-on: ${{ matrix.os }}
1616

@@ -22,7 +22,7 @@ jobs:
2222

2323
# Remove when .NET 8 is default on hosted runners
2424
- name: Install .NET 8
25-
uses: actions/setup-dotnet@v3.2.0
25+
uses: actions/setup-dotnet@v4.0.1
2626
with:
2727
dotnet-version: 8.0
2828

@@ -31,8 +31,8 @@ jobs:
3131
# if: runner.os == 'macOS' # reenable when .NET 8 is default on hosted runners
3232

3333
- name: Select Xcode Version
34-
run: sudo xcode-select -s /Applications/Xcode_15.2.app
35-
if: runner.os == 'macOS' # Remove when Xcode 15+ is default on the hosted runners
34+
run: sudo xcode-select -s /Applications/Xcode_15.4.app
35+
if: runner.os == 'macOS'
3636

3737
- name: Find and build changed projects
3838
run: |

0 commit comments

Comments
 (0)