github/workflows: Pin ruff to 0.1.0 and change flags for new version.

The `--format` flag was changed to `--output-format` in the recent update.

Pin to this version to prevent further updates from breaking (e.g. through
new rules or other changes).

This work was funded through GitHub Sponsors.

Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
pull/12713/head
Jim Mussared 2023-10-17 12:47:04 +11:00 zatwierdzone przez Damien George
rodzic 971f1cf987
commit c2361328e1
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -6,5 +6,5 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pip install --user ruff
- run: ruff --format=github .
- run: pip install --user ruff==0.1.0
- run: ruff check --output-format=github .

Wyświetl plik

@ -12,6 +12,6 @@ repos:
verbose: true
stages: [commit-msg]
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.0.265
rev: v0.1.0
hooks:
- id: ruff