From c854feb7cd78ba54339221edfd9dcbef8c4bc1f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Schr=C3=B6dinger?= <132720404+Schrodinger71@users.noreply.github.com> Date: Thu, 26 Dec 2024 17:29:17 +0300 Subject: [PATCH] Update Linter --- .github/workflows/python-linter.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-linter.yml b/.github/workflows/python-linter.yml index add5802..ecce74d 100644 --- a/.github/workflows/python-linter.yml +++ b/.github/workflows/python-linter.yml @@ -13,15 +13,15 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: '3.11' - name: Cache Python dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-cache-${{ hashFiles('**/requirements.txt') }} @@ -48,21 +48,21 @@ jobs: - name: Upload test results if: failure() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: test-report path: test-report.xml - name: Upload Pylint report if: failure() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: pylint-report path: pylint-report.txt - name: Upload Flake8 report if: failure() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: flake8-report path: flake8-report.txt