From 5bb581ee32f49ac4cd67a91c60d48df5582f279b Mon Sep 17 00:00:00 2001 From: Andrei Paraschiv Date: Mon, 18 Mar 2024 00:45:10 +0200 Subject: [PATCH] fix(misc): :ambulance: python-setup github action version bump --- .github/workflows/pipeline.yml | 4 ++-- .github/workflows/pylint.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 2581bd5..f4739f2 100755 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -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 @@ -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 diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index d7661b8..8f943c2 100755 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -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