Skip to content

Commit 2d42295

Browse files
committed
build: pin macOS GitHub runner to macos-10.15
Node.js 12.x requires Python 2 to build. `macos-latest` GitHub hosted runners are now macOS 11 and do not have Python 2 available. PR-URL: #41124 Refs: actions/runner-images#4060 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Beth Griggs <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
1 parent b13340e commit 2d42295

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test-macos.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ env:
88

99
jobs:
1010
test-macOS:
11-
runs-on: macos-latest
11+
runs-on: "macos-10.15"
1212
steps:
1313
- uses: actions/checkout@v2
1414
- name: Set up Python ${{ env.PYTHON_VERSION }}
15-
uses: actions/setup-python@v1
15+
uses: actions/setup-python@v2
1616
with:
1717
python-version: ${{ env.PYTHON_VERSION }}
1818
- name: Environment Information

0 commit comments

Comments
 (0)