Skip to content

Commit

Permalink
ci: fix pre-commit ci (#959)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas1312 committed Jan 30, 2023
1 parent 7b31972 commit 15fba71
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
cache: "pip"
- uses: pre-commit/action@v2.0.3
- uses: pre-commit/action@v3.0.0
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
rev: v4.4.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
- id: detect-private-key
- repo: https://github.com/psf/black
rev: 22.3.0
rev: 22.12.0
hooks:
- id: black
- id: black-jupyter
- repo: https://github.com/pycqa/isort
rev: 5.10.1
rev: 5.11.5
hooks:
- id: isort
name: isort (python)
- repo: https://github.com/pycqa/flake8
rev: 4.0.0
rev: 5.0.4
hooks:
- id: flake8
additional_dependencies:
Expand Down

0 comments on commit 15fba71

Please sign in to comment.