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 f2b2c27 + d273ba6 commit 9689f74Copy full SHA for 9689f74
.github/workflows/build.yml
@@ -35,7 +35,19 @@ jobs:
35
fi
36
37
- name: golangci-lint
38
- uses: reviewdog/action-golangci-lint@v1
+ uses: reviewdog/action-golangci-lint@v1
39
+
40
+ gitleaks-scan:
41
+ runs-on: ubuntu-latest
42
+ steps:
43
+ - uses: actions/checkout@v3
44
+ with:
45
+ fetch-depth: 0
46
+ - name: Run GitLeaks
47
+ run: |
48
+ wget https://github.com/gitleaks/gitleaks/releases/download/v8.18.2/gitleaks_8.18.2_linux_x64.tar.gz && \
49
+ tar -zxvf gitleaks_8.18.2_linux_x64.tar.gz && \
50
+ sudo mv gitleaks /usr/local/bin && gitleaks detect --source . -v
51
52
build:
53
needs: pre-checks
0 commit comments