Fix bug with msaad52v1 only admins consent to apps (#1043) #1
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
# Purpose: Run a secret scanner against the repo. | |
name: Run Secret Scan | |
on: | |
push: | |
pull_request: | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
secret-scan: | |
name: MegaLint Gitleaks | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup Config File | |
run: cp Testing/Linting/MegaLinter/.mega-linter-secret.yml .mega-linter.yml | |
- name: Check Repo | |
uses: oxsecurity/megalinter/flavors/security@latest |