Bump rich from 13.8.0 to 13.9.4 #57
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
| name: Pip audit | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request_target: | |
| branches: | |
| - master | |
| jobs: | |
| security: | |
| name: Run pip-audit | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install requirements | |
| run: | | |
| pip install -r requirements.txt | |
| pip install --no-cache-dir --upgrade --force-reinstall 'setuptools>=65.5.1' | |
| - name: Pip audit | |
| uses: pypa/[email protected] |