Skip to content

refactor(Quickstart): downgrade objectVersion (Xcode Project Format) #179

refactor(Quickstart): downgrade objectVersion (Xcode Project Format)

refactor(Quickstart): downgrade objectVersion (Xcode Project Format) #179

Workflow file for this run

name: "Vulnerability Scan with MobSF"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '30 6 * * 1'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
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.8
# Sets up the reviewdog cli
- name: Setup reviewdog
uses: reviewdog/[email protected]
- name: Show reviewdog version
run: reviewdog -version
# Performs analysis using MobSF and outputs a Sarif Report
- name: Run mobsfscan
uses: MobSF/mobsfscan@849b749e7f3244c7b4f418ff858a9fa4e1406115
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