Skip to content

Commit

Permalink
Fix broken build on MacOS
Browse files Browse the repository at this point in the history
The macos-10.15 target has been deprecated and removed from github, per
https://github.blog/changelog/2022-07-20-github-actions-the-macos-10-15-actions-runner-image-is-being-deprecated-and-will-be-removed-by-8-30-22/

This updates the build target so to instead tartget macos-12. I've opted
to target an explicit version as that's what's done for the other OS
targets, rather than using `latest`.
  • Loading branch information
SingingTree authored and kinetiknz committed Aug 24, 2023
1 parent d262e40 commit 1e6e68f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2019, macos-10.15]
os: [ubuntu-20.04, windows-2019, macos-12]
rust: [stable]
release: [true, false]
experimental: [false]
Expand All @@ -30,7 +30,7 @@ jobs:
rust: nightly
release: false
experimental: false
- os: macos-10.15
- os: macos-12
rust: nightly
release: false
experimental: false
Expand Down

0 comments on commit 1e6e68f

Please sign in to comment.