Skip to content

Commit

Permalink
.github: upgrade runners from Ubuntu 20.04 to 22.04
Browse files Browse the repository at this point in the history
This will upgrade shellcheck and pylint.

Signed-off-by: Marc Herbert <[email protected]>
  • Loading branch information
marc-hb committed Mar 24, 2023
1 parent 7f89bbc commit fbd2257
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on: [pull_request, workflow_dispatch]
jobs:

shellcheck:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- {uses: actions/checkout@v2, with: {fetch-depth: 0}}
- name: shellcheck
Expand All @@ -30,7 +30,7 @@ jobs:
text/x-shellscript shellcheck -x

pylint:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
# :-( https://github.community/t/support-for-yaml-anchors/16128
- {uses: actions/checkout@v2, with: {fetch-depth: 0}}
Expand All @@ -49,4 +49,4 @@ jobs:
BASE_REF: ${{ github.base_ref }}
# let's re-enable 'C'onventions once we got the other numbers down
run: ./tools/CI/check-gitrange.bash origin/${BASE_REF}...HEAD
text/x-python pylint --disable=C
text/x-script.python pylint --disable=C
2 changes: 1 addition & 1 deletion python-deps.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ python3-numpy
python3-scipy
pylint
python3-graphviz
python3-construct=2.8.*
python3-construct
python3-pytest

0 comments on commit fbd2257

Please sign in to comment.