Skip to content

P0: security scans + stable tool envelopes + doctor tool #1

P0: security scans + stable tool envelopes + doctor tool

P0: security scans + stable tool envelopes + doctor tool #1

Workflow file for this run

name: Security scan (report-only)
on:
push:
branches: ["**"]
pull_request:
permissions:
contents: read
jobs:
gitleaks:
name: gitleaks (secrets)
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run gitleaks (report-only)
uses: gitleaks/gitleaks-action@v2
env:
GITLEAKS_ENABLE_UPLOAD_ARTIFACT: "true"
GITLEAKS_ENABLE_SUMMARY: "true"
semgrep:
name: semgrep (sast)
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
- name: Run semgrep (report-only)
uses: semgrep/semgrep-action@v1
with:
config: "auto"