Skip to content

Merge pull request #103 from FusionAuth/mike/bump-swift-6.2-xcode-26.0.1 #525

Merge pull request #103 from FusionAuth/mike/bump-swift-6.2-xcode-26.0.1

Merge pull request #103 from FusionAuth/mike/bump-swift-6.2-xcode-26.0.1 #525

Workflow file for this run

name: "Vulnerability Scan with MobSF"
on:
# Triggers the workflow on push events but only for default and protected branches
push:
branches: [ "main" ]
# Triggers the workflow on pull request events but only for default and protected branches
pull_request:
branches: [ "main" ]
# Triggers the workflow on a schedule every Monday at 6:30 AM
schedule:
- cron: '30 6 * * 1'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Triggers the workflow when it is called from another workflow
workflow_call:
permissions:
contents: read
jobs:
mobile-security:
name: MobSF Scan
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
# Sets up the python as a prerequisites for MobSF
- name: Setup python
uses: actions/[email protected]
with:
python-version: 3.9
# Sets up the reviewdog cli
- name: Setup reviewdog
uses: reviewdog/action-setup@d8edfce3dd5e1ec6978745e801f9c50b5ef80252 # v1.4.0
- name: Show reviewdog version
run: reviewdog -version
# Performs analysis using MobSF and outputs a Sarif Report
- name: Run mobsfscan
uses: MobSF/mobsfscan@3d87bc570c4614d705547bddb521395663dba353 # 0.4.5
with:
args: . --sarif --output mobsf.sarif.json || true
# Uploads Sarif Report to GitHub
- name: Upload mobsfscan report
uses: github/codeql-action/[email protected]
if: success() || failure()
with:
sarif_file: mobsf.sarif.json
# Process Sarif Report file from MobSF with reviewdog cli
- name: Run reviewdog
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: success() || failure()
run: reviewdog -f=sarif -diff="git diff FETCH_HEAD" -name="mobsf" -reporter=github-pr-check < mobsf.sarif.json