Skip to content

Commit

Permalink
github: use runs-on: ubuntu-20.04 where python 3.6 is required
Browse files Browse the repository at this point in the history
Problem: The python linting job fails on ubuntu-latest because python
3.6 is no longer supported.

Use runs-on: ubuntu-20.04 in the python-lint job so that python 3.6
can still be used.
  • Loading branch information
grondo committed Dec 2, 2022
1 parent 8c0264a commit 5738bf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

python-lint:
name: python linting
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit 5738bf7

Please sign in to comment.