diff options
author | Richard Lau <rlau@redhat.com> | 2021-12-09 15:29:58 +0000 |
---|---|---|
committer | Richard Lau <rlau@redhat.com> | 2021-12-13 08:06:07 -0500 |
commit | 2d42295d2a74e8d537381ef650d5860cd142baef (patch) | |
tree | 47677c56b535a360ba305993c61e4c56c8a41521 | |
parent | b13340eff4a5eeae797fd8e083e3fd09955d7f09 (diff) | |
download | node-new-2d42295d2a74e8d537381ef650d5860cd142baef.tar.gz |
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: https://github.com/nodejs/node/pull/41124
Refs: https://github.com/actions/virtual-environments/issues/4060
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Beth Griggs <bgriggs@redhat.com>
Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
-rw-r--r-- | .github/workflows/test-macos.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml index b9794bde31..1a36f29c6b 100644 --- a/.github/workflows/test-macos.yml +++ b/.github/workflows/test-macos.yml @@ -8,11 +8,11 @@ env: jobs: test-macOS: - runs-on: macos-latest + runs-on: "macos-10.15" steps: - uses: actions/checkout@v2 - name: Set up Python ${{ env.PYTHON_VERSION }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: ${{ env.PYTHON_VERSION }} - name: Environment Information |