Skip to content

Commit

Permalink
CI - downgrade to macos-13 which has the needed Python versions (#6578)
Browse files Browse the repository at this point in the history
Problem: macos-latest currently does not provide Python 3.10
Workaround: temporarily switch to the previous runner macos-13

Fixes #6573
Related to #6577
  • Loading branch information
pavoljuhas committed Apr 25, 2024
1 parent e1b03ef commit 3ff41a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ jobs:
strategy:
matrix:
python-version: ['3.10', '3.11']
runs-on: macos-latest
# TODO(#6577): upgrade to macos-latest when it runs Python 3.10
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,8 @@ jobs:
strategy:
matrix:
python-version: [ '3.10', '3.11' ]
runs-on: macos-latest
# TODO(#6577): upgrade to macos-latest when it runs Python 3.10
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down

0 comments on commit 3ff41a4

Please sign in to comment.