Update lint_python.yml
Seeing if upgrading the actions will fix the safety check issue.
This commit is contained in:
parent
a9608d663d
commit
e8264ebe35
|
@ -4,8 +4,14 @@ jobs:
|
|||
lint_python:
|
||||
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.8
|
||||
3.9
|
||||
3.10
|
||||
3.11
|
||||
- run: pip install --upgrade pip poetry
|
||||
- run: pip install bandit black codespell flake8 flake8-bugbear flake8-comprehensions isort mypy pytest pyupgrade safety requests
|
||||
- run: bandit --recursive --skip B101 . || true # B101 is assert statements
|
||||
|
|
Loading…
Reference in New Issue