Skip to content

Bump gradle/gradle-build-action from 2.6.1 to 2.7.0 (#53) #15

Bump gradle/gradle-build-action from 2.6.1 to 2.7.0 (#53)

Bump gradle/gradle-build-action from 2.6.1 to 2.7.0 (#53) #15

Workflow file for this run

name: Gitleaks Secrets Scan
on:
push:
branches: [ 'main', 'feature/*' ]
tags: [ v* ]
workflow_dispatch:
jobs:
Credentials_Scanning:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run Gitleaks from container
run: |
docker create --name GL --entrypoint /bin/bash --interactive --volume ${{ github.workspace }}:/src zricethezav/gitleaks
docker start GL
docker exec GL git config --global --add safe.directory '/src'
docker exec --user $(id -u):$(id -g) GL gitleaks detect --source=/src --verbose -c /src/security/gitleaks/gitleaks.toml --report-path /src/gitleaks-report.json
continue-on-error: true
- name: upload_artifacts
uses: actions/upload-artifact@v3
with:
name: Gitleaks Artifact Upload
path: ${{ github.workspace }}/gitleaks-report.json