mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
a856d748bd
Bumps [returntocorp/semgrep-action](https://github.com/returntocorp/semgrep-action) from b93bc50eb1bd1a016cf749808608ee465db13f9d to 1. This release includes the previously tagged commit.
- [Release notes](https://github.com/returntocorp/semgrep-action/releases)
- [Changelog](https://github.com/returntocorp/semgrep-action/blob/develop/CHANGELOG.md)
- [Commits](b93bc50eb1...a9f6c903be
)
---
updated-dependencies:
- dependency-name: returntocorp/semgrep-action
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
32 lines
862 B
YAML
32 lines
862 B
YAML
name: Semgrep
|
|
|
|
on:
|
|
workflow_dispatch: # (manual dispatch)
|
|
schedule:
|
|
- cron: '0 2 * * *'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
semgrep:
|
|
name: Scan
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Checkout project source
|
|
- uses: actions/checkout@629c2de402a417ea7690ca6ce3f33229e27606a5 # v2
|
|
|
|
# Scan code using project's configuration on https://semgrep.dev/manage
|
|
- uses: returntocorp/semgrep-action@a9f6c903be5b9bc982d6be6f9312146daa4964b5 # v1
|
|
with:
|
|
publishToken: ${{ secrets.SEMGREP_APP_TOKEN }}
|
|
publishDeployment: ${{ secrets.SEMGREP_DEPLOYMENT_ID }}
|
|
# generateSarif: "1"
|
|
|
|
# # Upload SARIF file generated in previous step
|
|
# - name: Upload SARIF file
|
|
# uses: github/codeql-action/upload-sarif@v1
|
|
# with:
|
|
# sarif_file: semgrep.sarif
|
|
# if: always()
|