audit: add Py_TYPE to allowed symbols list (#138) #1395
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: Scan dependencies for vulnerabilities with pip-audit | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
schedule: | |
- cron: "0 12 * * *" | |
permissions: {} | |
jobs: | |
pip-audit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
with: | |
persist-credentials: false | |
- name: Install Python | |
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 | |
with: | |
python-version-file: pyproject.toml | |
- name: Run pip-audit | |
uses: pypa/gh-action-pip-audit@1220774d901786e6f652ae159f7b6bc8fea6d266 # v1.1.0 | |
with: | |
inputs: . | |
local: true | |
ignore-vulns: | | |
GHSA-v3c5-jqr6-7qm8 | |
PYSEC-2022-42969 | |
GHSA-r9hx-vwmv-q579 |