chore(deps): update rust:1.84.1 docker digest to 2c5f4e6 #3612
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: [main] | |
pull_request: | |
branches: [main] | |
schedule: | |
- cron: "41 3 * * 6" | |
permissions: | |
security-events: write | |
actions: read | |
contents: read | |
jobs: | |
semgrep: | |
name: Scan | |
runs-on: ubuntu-latest | |
container: | |
image: returntocorp/semgrep@sha256:c51744778f6ffb641e7b0109f275540d13d5177cb91a76a6bd73cba6bbda5d88 | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Run semgrep | |
shell: bash | |
env: | |
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }} | |
run: | | |
semgrep ci --sarif --output=semgrep.sarif | |
- name: Upload SARIF file for GitHub Advanced Security Dashboard | |
if: always() | |
uses: github/codeql-action/upload-sarif@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8 | |
with: | |
sarif_file: semgrep.sarif |