chore(deps): update debian:bullseye-slim docker digest to 8118d0d #3050
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
name: semgrep | |
on: | |
push: | |
branches: [master, dev] | |
pull_request: | |
branches: [master, dev] | |
schedule: | |
- cron: '28 6 * * 4' | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
container: | |
image: returntocorp/semgrep | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- uses: actions/checkout@v3 | |
- run: semgrep ci --sarif --output=semgrep.sarif || true | |
env: | |
SEMGREP_RULES: p/default | |
- uses: github/codeql-action/upload-sarif@v2 | |
if: always() | |
with: | |
sarif_file: semgrep.sarif |