8000 Switch ubuntu-latest to ubuntu-20.04 to fix github actions · graphql-python/gql@218eacb · GitHub
[go: up one dir, main page]

Skip to content

Commit 218eacb

Browse files
committed
Switch ubuntu-latest to ubuntu-20.04 to fix github actions
1 parent 0522288 commit 218eacb

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
build:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-20.04
1111

1212
steps:
1313
- uses: actions/checkout@v3

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-20.04
88

99
steps:
EF82
1010
- uses: actions/checkout@v3

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
max-parallel: 4
1010
matrix:
1111
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.8"]
12-
os: [ubuntu-latest, windows-latest]
12+
os: [ubuntu-20.04, windows-latest]
1313
exclude:
1414
- os: windows-latest
1515
python-version: "3.7"
@@ -38,7 +38,7 @@ jobs:
3838
TOXENV: ${{ matrix.toxenv }}
3939

4040
single_extra:
41-
runs-on: ubuntu-latest
41+
runs-on: ubuntu-20.04
4242
strategy:
4343
fail-fast: false
4444
matrix:
@@ -58,7 +58,7 @@ jobs:
5858
run: pytest tests --${{ matrix.dependency }}-only
5959

6060
coverage:
61-
runs-on: ubuntu-latest
61+
runs-on: ubuntu-20.04
6262

6363
steps:
6464
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)
0