Skip to content

Commit

Permalink
fix(misc): 🚑 python-setup github action version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyTheFactory committed Mar 17, 2024
1 parent 86d7128 commit 5bb581e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs: # jobs. We will have two jobs (test and publish) with multiple steps.

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run image # install poetry
Expand All @@ -39,7 +39,7 @@ jobs: # jobs. We will have two jobs (test and publish) with multiple steps.
poetry run pylint newspaper --fail-under=8.0
- name: mypy # Run mypy static analysis
run: |
poetry run mypy --ignore-missing-imports -p newspaper --config-file mypy.ini
poetry run mypy -p newspaper --config-file mypy.ini
env:
MYPYPATH: stubs
- name: Pytest # Run pytest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: false
Expand Down

0 comments on commit 5bb581e

Please sign in to comment.