Skip to content

Commit

Permalink
chore: add secret scanning circleci job
Browse files Browse the repository at this point in the history
  • Loading branch information
Avishagp committed Oct 12, 2023
1 parent 6f44265 commit 4096d10
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
workflows:
version: 2
CICD:
jobs:
- prodsec/secrets-scan:
steps:
- run:
name: Install gitleaks
command: |
download_url=https://github.com/gitleaks/gitleaks/releases/download/v8.16.2/gitleaks_8.16.2_linux_x64.tar.gz
echo Using ${download_url}
curl -L ${download_url} --output gitleaks.tar.gz
tar -xf gitleaks.tar.gz
chmod +x ./gitleaks
- run:
name: Install gitleaks
command: |
download_url=https://github.com/gitleaks/gitleaks/releases/download/v8.16.2/gitleaks_8.16.2_linux_x64.tar.gz
echo Using ${download_url}
curl -L ${download_url} --output gitleaks.tar.gz
tar -xf gitleaks.tar.gz
chmod +x ./gitleaks

0 comments on commit 4096d10

Please sign in to comment.