Skip to content

chore(deps): bump react and @types/react #56

chore(deps): bump react and @types/react

chore(deps): bump react and @types/react #56

Workflow file for this run

name: Security Scan
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
security:
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
# SAST with Semgrep
- name: Semgrep
uses: returntocorp/semgrep-action@v1
with:
config: >-
p/default
p/security-audit
p/secrets
continue-on-error: true
# Secret scanning with TruffleHog
- name: TruffleHog
uses: trufflesecurity/trufflehog@main
with:
extra_args: --only-verified
continue-on-error: true