Skip to content

Commit fbd2257

Browse files
committed
.github: upgrade runners from Ubuntu 20.04 to 22.04
This will upgrade shellcheck and pylint. Signed-off-by: Marc Herbert <marc.herbert@intel.com>
1 parent 7f89bbc commit fbd2257

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/pull_request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on: [pull_request, workflow_dispatch]
1919
jobs:
2020

2121
shellcheck:
22-
runs-on: ubuntu-20.04
22+
runs-on: ubuntu-22.04
2323
steps:
2424
- {uses: actions/checkout@v2, with: {fetch-depth: 0}}
2525
- name: shellcheck
@@ -30,7 +30,7 @@ jobs:
3030
text/x-shellscript shellcheck -x
3131

3232
pylint:
33-
runs-on: ubuntu-20.04
33+
runs-on: ubuntu-22.04
3434
steps:
3535
# :-( https://github.community/t/support-for-yaml-anchors/16128
3636
- {uses: actions/checkout@v2, with: {fetch-depth: 0}}
@@ -49,4 +49,4 @@ jobs:
4949
BASE_REF: ${{ github.base_ref }}
5050
# let's re-enable 'C'onventions once we got the other numbers down
5151
run: ./tools/CI/check-gitrange.bash origin/${BASE_REF}...HEAD
52-
text/x-python pylint --disable=C
52+
text/x-script.python pylint --disable=C

python-deps.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ python3-numpy
22
python3-scipy
33
pylint
44
python3-graphviz
5-
python3-construct=2.8.*
5+
python3-construct
66
python3-pytest

0 commit comments

Comments
 (0)