We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2b2646e + 9d6dfb2 commit 31aa78bCopy full SHA for 31aa78b
.github/workflows/build.yml
@@ -49,6 +49,18 @@ jobs:
49
vuln-type: 'os,library'
50
severity: 'CRITICAL,HIGH'
51
52
+ gitleaks-scan:
53
+ runs-on: ubuntu-latest
54
+ steps:
55
+ - uses: actions/checkout@v3
56
+ with:
57
+ fetch-depth: 0
58
+ - name: Run GitLeaks
59
+ run: |
60
+ wget https://github.com/gitleaks/gitleaks/releases/download/v8.18.2/gitleaks_8.18.2_linux_x64.tar.gz && \
61
+ tar -zxvf gitleaks_8.18.2_linux_x64.tar.gz && \
62
+ sudo mv gitleaks /usr/local/bin && gitleaks detect --source . -v
63
+
64
image-build:
65
runs-on: ubuntu-latest
66
needs: pre-checks
0 commit comments