Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin Github Actions Runner to Ubuntu 20 for Py27 #698

Merged
merged 2 commits into from Nov 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/actions/setup-python-matrix/action.yml
Expand Up @@ -3,42 +3,42 @@ description: "Sets up all versions of python required for matrix testing in this
runs:
using: "composite"
steps:
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "pypy-3.7"
architecture: x64

- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "pypy-2.7"
architecture: x64

- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "3.7"
architecture: x64

- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "3.8"
architecture: x64

- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "3.9"
architecture: x64

- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
architecture: x64

- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
architecture: x64

- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "2.7"
architecture: x64
Expand Down
30 changes: 15 additions & 15 deletions .github/workflows/tests.yml
Expand Up @@ -26,7 +26,7 @@ on:

jobs:
tests: # Aggregate job that provides a single check for workflow success
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
needs:
- python
- elasticsearchserver01
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
20,
]

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 30

steps:
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
matrix:
group-number: [1]

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 30

steps:
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
matrix:
group-number: [1]

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 30

steps:
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
matrix:
group-number: [1, 2]

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 30

services:
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:
matrix:
group-number: [1, 2]

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 30

services:
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:
matrix:
group-number: [1, 2]

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 30

services:
Expand Down Expand Up @@ -310,7 +310,7 @@ jobs:
matrix:
group-number: [1]

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 30

services:
Expand Down Expand Up @@ -355,7 +355,7 @@ jobs:
matrix:
group-number: [1, 2]

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 30

services:
Expand Down Expand Up @@ -398,7 +398,7 @@ jobs:
matrix:
group-number: [1]

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 30

services:
Expand Down Expand Up @@ -442,7 +442,7 @@ jobs:
matrix:
group-number: [1, 2, 3, 4]

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 30

services:
Expand Down Expand Up @@ -507,7 +507,7 @@ jobs:
matrix:
group-number: [1]

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 30

services:
Expand Down Expand Up @@ -550,7 +550,7 @@ jobs:
matrix:
group-number: [1]

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 30

services:
Expand Down Expand Up @@ -595,7 +595,7 @@ jobs:
matrix:
group-number: [1]

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 30

services:
Expand Down Expand Up @@ -640,7 +640,7 @@ jobs:
matrix:
group-number: [1]

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
timeout-minutes: 30

services:
Expand Down