Skip to content

Semgrep

Semgrep #3

Workflow file for this run

# 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.
# This workflow file requires a free account on Semgrep.dev to
# manage rules, file ignores, notifications, and more.
#
# See https://semgrep.dev/docs
name: Semgrep
on:
push:
branches: [ "develop" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "develop" ]
schedule:
- cron: '36 15 * * 2'
permissions:
contents: read
jobs:
semgrep:
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
name: Scan
runs-on: ubuntu-latest
steps:
# Checkout project source
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
# Scan code using project's configuration on https://semgrep.dev/manage
- uses: returntocorp/semgrep-action@448aa1b48f5a64cf0b4853f4b8c958f86e448267
with:
publishToken: ${{ secrets.SEMGREP_APP_TOKEN }}
generateSarif: "1"
path: '/home/runner/work/Goatlin/Goatlin/packages/clients/android'
# Upload SARIF file generated in previous step
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@18fe527fa8b29f134bb91f32f1a5dc5abb15ed7f
with:
sarif_file: semgrep.sarif
if: always()