-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert to older Ubuntu and macOS versions, and leave comments explain…
…ing why
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ defaults: | |
jobs: | ||
|
||
product: | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: smorimoto/tune-github-hosted-runner-network@v1 | ||
- uses: actions/[email protected] | ||
|
@@ -72,7 +72,7 @@ jobs: | |
|
||
|
||
docs: | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: smorimoto/tune-github-hosted-runner-network@v1 | ||
- uses: actions/[email protected] | ||
|
@@ -103,7 +103,7 @@ jobs: | |
|
||
|
||
gradlePython: | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: smorimoto/tune-github-hosted-runner-network@v1 | ||
- uses: actions/[email protected] | ||
|
@@ -120,7 +120,7 @@ jobs: | |
demo: | ||
needs: [product] | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: smorimoto/tune-github-hosted-runner-network@v1 | ||
- uses: actions/[email protected] | ||
|
@@ -163,9 +163,9 @@ jobs: | |
# To avoid clutter in the GitHub UI, OS versions are not added to the `os` | ||
# dimension directly. | ||
- os: linux | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-20.04 # 22.04 has a minimum Python version of 3.7 (see setup-python) | ||
- os: macos | ||
runs-on: macos-14 | ||
runs-on: macos-12 # 14 has a minimum Python version of 3.8 (see setup-python) | ||
- os: windows | ||
runs-on: windows-2022 | ||
|
||
|