From 7c959f373c2f91d56a60277dd3d84cb67f908969 Mon Sep 17 00:00:00 2001 From: Terraform Date: Thu, 28 Sep 2023 17:17:10 +0700 Subject: [PATCH] Automated: Add Semgrep github action --- .github/workflows/semgrep.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/semgrep.yml diff --git a/.github/workflows/semgrep.yml b/.github/workflows/semgrep.yml new file mode 100644 index 0000000..bb2c0e9 --- /dev/null +++ b/.github/workflows/semgrep.yml @@ -0,0 +1,23 @@ +###################################################################################################################### +# THIS FILE IS AUTOGENERATED. SEE https://github.com/fishbrain/terraform/blob/master/repositories/semgrep.tf # +###################################################################################################################### +name: Semgrep +on: + pull_request: {} + push: + branches: ["master", "main"] + schedule: + - cron: '0 2 * * 1-6' # scheduled for 02:00 UTC every day except Sunday + +jobs: + semgrep: + name: Scan + runs-on: ubuntu-latest + container: + image: returntocorp/semgrep + if: (github.actor != 'dependabot[bot]') + steps: + - uses: actions/checkout@v4 + - run: semgrep ci + env: + SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}