Skip to content

Commit

Permalink
Merge pull request #504 from dotnet/jfversluis-patch-1
Browse files Browse the repository at this point in the history
Update macOS build config
  • Loading branch information
jfversluis committed Aug 20, 2024
2 parents 33e124a + 595bfa0 commit bc196ec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-13]
os: [windows-latest, macos-14]

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

Expand All @@ -18,7 +18,7 @@ jobs:

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

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

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

- name: Find and build all C# projects
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-13]
os: [windows-latest, macos-14]

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

Expand All @@ -22,7 +22,7 @@ jobs:

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

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

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

- name: Find and build changed projects
run: |
Expand Down

0 comments on commit bc196ec

Please sign in to comment.