Skip to content

Commit

Permalink
chore: fix black version mismatch with GHA
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Bluhm <[email protected]>
  • Loading branch information
dbluhm committed Feb 21, 2024
1 parent a57c5e1 commit 90585e7
Show file tree
Hide file tree
Showing 4 changed files with 644 additions and 708 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/code-quality-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
- uses: psf/black@24.1.1
with:
src: "./proxy_mediator"
- uses: chartboost/ruff-action@v1
with:
src: "./proxy_mediator"
version: 0.1.2
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ repos:
args: ["--config", ".commitlint.config.js"]
additional_dependencies: ['@commitlint/config-conventional']
- repo: https://github.com/psf/black
rev: 23.3.0
rev: 24.1.1
hooks:
- id: black
stages: [commit]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.287
rev: v0.1.2
hooks:
- id: ruff
stages: [commit]
args: [--fix, --exit-non-zero-on-fix]
args: [--fix, --exit-non-zero-on-fix]
Loading

0 comments on commit 90585e7

Please sign in to comment.