fix: Loading cached user data before IAM sdk initialization (SDKCF-6826) #722
Workflow file for this run
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: mobsfscan sarif | |
on: | |
push: | |
branches: [ master, main ] | |
pull_request: | |
branches: [ master, main ] | |
jobs: | |
mobsfscan: | |
runs-on: ubuntu-latest | |
name: mobsfscan code scanning | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v2 | |
- name: mobsfscan | |
uses: MobSF/mobsfscan@main | |
with: | |
args: '. --sarif --output results.sarif || true' | |
- name: Upload mobsfscan report | |
uses: github/codeql-action/upload-sarif@v1 | |
with: | |
sarif_file: results.sarif |