From 2d673aebb6a46eda928928133df28d9cb175a5d8 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Wed, 10 Apr 2024 23:01:42 +0100 Subject: [PATCH] CI: Fix bitrot and deprecation warnings. --- .github/workflows/build.yml | 6 +++--- .github/workflows/qa.yml | 2 +- tox.ini | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b135090..675b6e0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v3 @@ -35,7 +35,7 @@ jobs: make dist - name: Upload Packages - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.RELEASE_FILE }} path: dist/ @@ -46,6 +46,6 @@ jobs: make deb - name: Upload Debian Package - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: ${{ github.workspace }}/*.deb diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index 18305d2..0a6f9ba 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set up Python '3,11' uses: actions/setup-python@v3 diff --git a/tox.ini b/tox.ini index 090fdb0..44ab1a1 100644 --- a/tox.ini +++ b/tox.ini @@ -20,7 +20,7 @@ commands = python -m build --no-isolation python -m twine check dist/* isort --check . - ruff --format=github . + ruff check --output-format=github . codespell . deps = check-manifest