Skip to content

Commit

Permalink
GHA: switch pylint to the latest version from pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
dmach committed Jan 14, 2025
1 parent 4db0066 commit 72ec3b2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/linters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ jobs:
- name: 'Install packages'
run: |
sudo apt-get -y update
sudo apt-get -y --no-install-recommends install pylint python3-rpm python3-ruamel.yaml
sudo apt-get -y --no-install-recommends install python3-rpm python3-ruamel.yaml
# we're using the latest pylint from pypi
sudo pip3 config set global.break-system-packages 1
sudo pip3 install pylint
- uses: actions/checkout@v3

Expand All @@ -68,7 +71,10 @@ jobs:
- name: 'Install packages'
run: |
sudo apt-get -y update
sudo apt-get -y --no-install-recommends install diffutils pylint python3-pip python3-rpm python3-ruamel.yaml
sudo apt-get -y --no-install-recommends install diffutils python3-pip python3-rpm python3-ruamel.yaml
# we're using the latest pylint from pypi
sudo pip3 config set global.break-system-packages 1
sudo pip3 install pylint
- uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 72ec3b2

Please sign in to comment.