chore: upgrade requests to latest version (#510) #533
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: Find dependencies vulnerabilities | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| scan-codebase: | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| name: Inspect packages with ScanCode.io | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| path: scancode-inputs | |
| sparse-checkout: pyproject.toml | |
| sparse-checkout-cone-mode: false | |
| persist-credentials: false # do not keep the token around | |
| - name: Fail on known vulnerabilities | |
| uses: aboutcode-org/scancode-action@6e900c920928c44932e756e308561451b09ec58b | |
| with: | |
| pipelines: "inspect_packages:StaticResolver,find_vulnerabilities" | |
| check-compliance: true | |
| compliance-fail-on-vulnerabilities: true | |
| scancodeio-repo-branch: "main" | |
| env: | |
| VULNERABLECODE_URL: https://public.vulnerablecode.io/ |