This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
Remove TGT/ST related methods. Replace TGT session storage with API K… #2706
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: Github Secrets Scanner | |
on: [push] | |
jobs: | |
secret-scan: | |
runs-on: ubuntu-latest | |
env: | |
REPO: https://github.com/MeasureAuthoringTool/bonnie | |
REMOTE_EXCLUDES_URL: https://raw.githubusercontent.com/semanticbits/bmat-gitleaks-automation/master/bonnie/gitleaks.toml | |
GITLEAKS_VERSION: v7.0.1 | |
steps: | |
- name: Execute Gitleaks | |
run: | | |
wget ${REMOTE_EXCLUDES_URL} -O gitleaks.toml | |
wget https://github.com/zricethezav/gitleaks/releases/download/${GITLEAKS_VERSION}/gitleaks-linux-amd64 -O gitleaks | |
chmod +x gitleaks | |
echo ${GITHUB_SHA} | |
echo "gitleaks --repo-url=${REPO} -v --redact --commit=${GITHUB_SHA} --config-path=gitleaks.toml" | |
./gitleaks --repo-url=${REPO} -v --redact --commit=${GITHUB_SHA} --config-path=gitleaks.toml | |
- name: Slack notification | |
if: failure() | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
uses: Ilshidur/action-slack@master | |
with: | |
args: 'Potential Secrets found in: https://github.com/{{ GITHUB_REPOSITORY }}/commit/{{ GITHUB_SHA }} Link to build with full gitleaks output: https://github.com/{{ GITHUB_REPOSITORY }}/commit/{{ GITHUB_SHA }}/checks' |