Skip to content

Commit 37b214c

Browse files
committed
Move CI runners away from macOS-10.15 because of sunsetting by Github.
There's a scheduled removal of the image by 30 Aug 2022, with intermittent failing of those runners to raise awareness to that effect. We need to move our CI runners to at least `macOS-11` to preempt any failures. Fixes diffblue#7027.
1 parent 64034e0 commit 37b214c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/pull-request-checks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,8 +382,8 @@ jobs:
382382
- name: Run tests
383383
run: cd build; ctest . -V -L THOROUGH -j2
384384

385-
check-macos-10_15-make-clang:
386-
runs-on: macos-10.15
385+
check-macos-11-make-clang:
386+
runs-on: macos-11
387387
steps:
388388
- uses: actions/checkout@v2
389389
with:

.github/workflows/release-packages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144

145145

146146
homebrew-pr:
147-
runs-on: macos-10.15
147+
runs-on: macos-11
148148
steps:
149149
- name: Get release tag name
150150
# The GITHUB_REF we get has refs/tags/ in front of the tag name so we

0 commit comments

Comments
 (0)