Skip to content

fix: export frontend maps during Docker build (#19) #538

fix: export frontend maps during Docker build (#19)

fix: export frontend maps during Docker build (#19) #538

Workflow file for this run

name: Secret Scan
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
gitleaks:
name: Gitleaks Security Scan
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run Gitleaks
run: |
docker run --rm -v "$PWD:/repo" zricethezav/gitleaks:latest \
detect --source /repo --redact --no-banner
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}