Skip to content

Commit

Permalink
feat: Add Gitleaks scan to GitHub Actions workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Louis Labeyrie <labeyrielouis@gmail.com>
  • Loading branch information
Razano26 committed Jun 30, 2024
1 parent 7bf2c0b commit 365976c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ name: Test Gradle project
on: [push, pull_request]

jobs:
scan:
name: Gitleaks scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

lint-gradle-project:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 365976c

Please sign in to comment.