2024-08-22 21:30:12 +02:00
|
|
|
name: gitleaks
|
2024-08-22 22:01:32 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
2024-08-22 22:20:42 +02:00
|
|
|
schedule:
|
|
|
|
- cron: '* 22 * * *' # test
|
2024-08-22 21:30:12 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
gitleaks:
|
|
|
|
#runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Run Gitleaks
|
|
|
|
uses: docker://zricethezav/gitleaks:v8.18.4
|
|
|
|
with:
|
|
|
|
args: detect --no-git --verbose --source ${{ github.workspace }}
|