Skip to content

Commit 3ff41a4

Browse files
authored
CI - downgrade to macos-13 which has the needed Python versions (#6578)
Problem: macos-latest currently does not provide Python 3.10 Workaround: temporarily switch to the previous runner macos-13 Fixes #6573 Related to #6577
1 parent e1b03ef commit 3ff41a4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci-daily.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ jobs:
7171
strategy:
7272
matrix:
7373
python-version: ['3.10', '3.11']
74-
runs-on: macos-latest
74+
# TODO(#6577): upgrade to macos-latest when it runs Python 3.10
75+
runs-on: macos-13
7576
steps:
7677
- uses: actions/checkout@v4
7778
- uses: actions/setup-python@v5

.github/workflows/ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,8 @@ jobs:
260260
strategy:
261261
matrix:
262262
python-version: [ '3.10', '3.11' ]
263-
runs-on: macos-latest
263+
# TODO(#6577): upgrade to macos-latest when it runs Python 3.10
264+
runs-on: macos-13
264265
steps:
265266
- uses: actions/checkout@v4
266267
- uses: actions/setup-python@v5

0 commit comments

Comments
 (0)