Skip to content

fix: address v0.5.0 prerelease review (#68) #125

fix: address v0.5.0 prerelease review (#68)

fix: address v0.5.0 prerelease review (#68) #125

Workflow file for this run

name: Semgrep
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
semgrep:
name: Semgrep Scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: "3.13"
- name: Install Semgrep
run: pip install semgrep
- name: Run Semgrep
run: >
semgrep scan
--metrics=off
--error
--config p/python
--config p/security-audit
--config p/secrets
--include="*.py"
.