mirror of https://github.com/grafana/grafana.git
37 lines
887 B
YAML
37 lines
887 B
YAML
name: Trufflehog
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
- reopened
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
trufflehog:
|
|
name: Run Trufflehog
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read # clone the repo
|
|
|
|
steps:
|
|
- name: Calculate fetch depth
|
|
id: fetch_depth
|
|
shell: bash
|
|
run: echo "fetch_depth=$(( ${{ github.event.pull_request.commits }} + 2 ))" >> "$GITHUB_OUTPUT"
|
|
- name: Checkout code
|
|
uses: actions/checkout@v5
|
|
with:
|
|
persist-credentials: false
|
|
fetch-depth: ${{ steps.fetch_depth.outputs.fetch_depth }}
|
|
- name: Trufflehog
|
|
uses: trufflesecurity/trufflehog@ad6fc8fb446b8fafbf7ea8193d2d6bfd42f45690 # v3.90.11
|
|
with:
|
|
extra_args: --results=verified
|