Skip to content

Commit

Permalink
Updated GitHub Actions workflows for Xcode 16 requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
orchetect committed Nov 14, 2024
1 parent 4988eee commit 8d51cb0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ on:
jobs:
macOS:
name: macOS
runs-on: macos-latest
runs-on: macos-15 # required for Xcode 16.x
steps:
- uses: actions/checkout@main
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable # Sometimes a newer version of Xcode is available but isn't yet made default
xcode-version: latest-stable
- name: Build
run: xcodebuild build -workspace ".swiftpm/xcode/package.xcworkspace" -scheme "MarkersExtractor-Package" -destination "generic/platform=macOS,name=Any Mac" | xcpretty && exit ${PIPESTATUS[0]}
2 changes: 1 addition & 1 deletion .github/workflows/release_github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
build:
runs-on: macos-latest
runs-on: macos-15 # required for Xcode 16.x

steps:
- name: Checkout repository
Expand Down

0 comments on commit 8d51cb0

Please sign in to comment.