build(deps): bump the gradle-minor-dependencies group across 1 directory with 8 updates #364
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
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/checkout@v4.1.7 | |
# Sets up the python as a prerequisites for MobSF | |
- name: Setup python | |
uses: actions/setup-python@v5.1.1 | |
with: | |
python-version: 3.8 | |
# Sets up the reviewdog cli | |
- name: Setup reviewdog | |
uses: reviewdog/action-setup@v1.3.0 | |
- 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/upload-sarif@v3.25.15 | |
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 |