Skip to content

Commit

Permalink
ci: pin ubuntu version in GA jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
audrium committed Nov 18, 2020
1 parent 942d015 commit e68fb9f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
lint-shellcheck:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2

Expand All @@ -14,7 +14,7 @@ jobs:
./run-tests.sh --check-shellscript
lint-black:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2

Expand All @@ -30,7 +30,7 @@ jobs:
run: ./run-tests.sh --check-black

lint-pydocstyle:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2

Expand All @@ -46,7 +46,7 @@ jobs:
run: ./run-tests.sh --check-pydocstyle

lint-check-manifest:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2

Expand All @@ -62,7 +62,7 @@ jobs:
run: ./run-tests.sh --check-manifest

docs-cli-commands:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2

Expand All @@ -80,7 +80,7 @@ jobs:
run: ./run-tests.sh --check-cli-cmds

docs-cli-api:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2

Expand All @@ -98,7 +98,7 @@ jobs:
run: ./run-tests.sh --check-cli-api

docs-sphinx:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2

Expand All @@ -116,7 +116,7 @@ jobs:
run: ./run-tests.sh --check-sphinx

python-tests:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
include:
Expand Down

0 comments on commit e68fb9f

Please sign in to comment.