Skip to content

Commit 4f603c4

Browse files
committed
specify ubuntu-20.04 explicitly for python 3.6.15
ubuntu-latest apparently doesn't have that python version anymore
1 parent 26d9ca9 commit 4f603c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/python-linters.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request]
44

55
jobs:
66
python-files:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-20.04
88
outputs:
99
filelist: ${{ steps.python-files.outputs.filelist }}
1010
steps:
@@ -14,7 +14,7 @@ jobs:
1414
echo "::set-output name=filelist::$(find . -type f -exec awk ' /^#!.*python/{print FILENAME} {nextfile}' {} + | tr '\n' ' ')"
1515
1616
pylint:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-20.04
1818
needs: [python-files]
1919
steps:
2020
- uses: actions/checkout@v2
@@ -43,7 +43,7 @@ jobs:
4343
pylint --errors-only $PYTHON_FILES
4444
4545
flake8:
46-
runs-on: ubuntu-latest
46+
runs-on: ubuntu-20.04
4747
needs: [python-files]
4848
steps:
4949
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)