Skip to content

Commit 1e6e68f

Browse files
SingingTreekinetiknz
authored andcommitted
Fix broken build on MacOS
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`.
1 parent d262e40 commit 1e6e68f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
os: [ubuntu-20.04, windows-2019, macos-10.15]
19+
os: [ubuntu-20.04, windows-2019, macos-12]
2020
rust: [stable]
2121
release: [true, false]
2222
experimental: [false]
@@ -30,7 +30,7 @@ jobs:
3030
rust: nightly
3131
release: false
3232
experimental: false
33-
- os: macos-10.15
33+
- os: macos-12
3434
rust: nightly
3535
release: false
3636
experimental: false

0 commit comments

Comments
 (0)