fix: upd Darkgraylib 2.0.1 (git dubious ownership) #994
Workflow file for this run
This file contains 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: safety | |
on: push # yamllint disable-line rule:truthy | |
jobs: | |
safety: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- run: pip install -U pip-tools | |
- run: pip-compile setup.cfg | |
- run: pip install -U safety | |
- name: Check dependencies for known security vulnerabilities using Safety | |
run: safety check --file requirements.txt |