fix: Update cryptography version to be greater than or equal to 46.0.4 due to a vulnerability/CVE report #129
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://beta.ruff.rs | |
| name: ruff | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| ruff: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - run: pip install --user ruff | |
| - run: ruff check --ignore="E722,F40,F841" --line-length=320 --target-version=py37 . |