Skip to content

Commit

Permalink
Fix working-directory in action.yml and installed lint-python version (
Browse files Browse the repository at this point in the history
…#12)

* Fix working-directory in action.yml and installed lint-python version

* Set version to v2.2.1
  • Loading branch information
psrok1 authored Apr 3, 2024
1 parent 9d4291a commit f4fc827
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@ runs:
- uses: actions/setup-python@v4
with:
python-version: ${{inputs.python-version}}
- run: pip install lint-python==2.0.0
- run: pip install lint-python==2.2.1
shell: bash
- run: pip install -r requirements.txt
working-directory: ${{inputs.working-directory}}
if: ${{inputs.install-requirements == 'true'}}
shell: bash
- run: lint-python --check --install
Expand Down
2 changes: 1 addition & 1 deletion lint_python/constants.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "2.2.0"
__version__ = "2.2.1"
USED_LINTERS = ["isort==5.10.1", "black==22.6.0", "flake8==4.0.1", "mypy==0.971"]

0 comments on commit f4fc827

Please sign in to comment.