Update legitify.yml #119
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Gitleaks Secrets Scan | |
on: [push] | |
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 run --user root --volume ${{ github.workspace }}:/src --interactive zricethezav/gitleaks detect --source=/src --verbose --no-git --report-path /src/gitleaks-reports.json | |
continue-on-error: true | |
- name: upload_artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Gitleaks_Artifact | |
path: ${{ github.workspace }}/gitleaks-reports.json | |
- name: Depcheck | |
uses: dependency-check/Dependency-Check_Action@main | |
id: Depcheck | |
with: | |
project: 'test' | |
path: '.' | |
format: 'HTML' | |
out: 'reports' # this is the default, no need to specify unless you wish to override it | |
args: > | |
--enableRetired | |
- name: Upload Test results | |
uses: actions/upload-artifact@master | |
with: | |
name: Dependency_check artifact | |
path: ${{github.workspace}}/reports |