Skip to content

Commit

Permalink
Pin Github Actions Runner to Ubuntu 20 for Py27 (#698)
Browse files Browse the repository at this point in the history
* Pin Github Actions runner to ubuntu 20 for Py27

* Upgrade setup-python
  • Loading branch information
TimPansino committed Nov 23, 2022
1 parent 7ae0c94 commit eb28b52
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 23 deletions.
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

0 comments on commit eb28b52

Please sign in to comment.