Skip to content

Commit

Permalink
fix(ci): Fix dependency installation for python checks on updated ubu…
Browse files Browse the repository at this point in the history
…ntu-latest runners (endless-sky#10522)
  • Loading branch information
tibetiroka authored Sep 30, 2024
1 parent 686930d commit 3c777d1
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/projects_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
with:
show-progress: false
- name: Install dependencies
run: python3 -m pip install --user python-debian
run: pip install --break-system-packages python-debian
- name: Validate copyright file with python-debian
run: python3 ./utils/check_copyright.py
- name: Validate copyright file with debian-control-linter
Expand All @@ -60,7 +60,6 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
show-progress: false
- uses: codespell-project/actions-codespell@master
with:
Expand Down Expand Up @@ -96,7 +95,7 @@ jobs:
with:
python-version: '3.x'
- name: Install dependencies
run: pip install regex
run: pip install --break-system-packages regex
- name: Run style checker
run: python ./utils/check_code_style.py

Expand All @@ -114,6 +113,6 @@ jobs:
with:
python-version: '3.x'
- name: Install dependencies
run: pip install regex
run: pip install --break-system-packages regex
- name: Run style checker
run: python ./utils/check_content_style.py

0 comments on commit 3c777d1

Please sign in to comment.