Skip to content

Commit 7036387

Browse files
committed
COMP: Fix GitHub workflow using current "macos-12" runner
Runner "macos-10.15" was removed on 2022.08.30 See 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/ > The macos-11 label has been deprecated and will no longer be available > after 28 June 2024. Source: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-private-repositories
1 parent 8109ffb commit 7036387

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ on:
1010

1111
jobs:
1212
tests:
13-
runs-on: macos-10.15
14-
name: macos-10.15
13+
runs-on: macos-12
14+
name: macos-12
1515
steps:
1616
- uses: actions/checkout@v2
1717
with:
@@ -31,9 +31,6 @@ jobs:
3131
- name: Install scikit-ci-addons
3232
run: pip install -U scikit-ci-addons
3333

34-
- name: Specific XCode version
35-
run: sudo xcode-select -s "/Applications/Xcode_11.7.app"
36-
3734
- name: Download Qt archive
3835
uses: carlosperate/download-file-action@v1.1.1
3936
with:

0 commit comments

Comments
 (0)