Skip to content

[Snyk] Security upgrade certifi from 2024.2.2 to 2024.7.4 #133

[Snyk] Security upgrade certifi from 2024.2.2 to 2024.7.4

[Snyk] Security upgrade certifi from 2024.2.2 to 2024.7.4 #133

Workflow file for this run

name: Semgrep
on:
pull_request_target: {}
workflow_dispatch: {}
push:
branches: ["master", "main"]
schedule:
- cron: '30 15 */15 * *' # Sets Semgrep to scan every 15 days.
jobs:
semgrep:
name: semgrep/ci
runs-on: ubuntu-latest
container:
image: semgrep/semgrep
if: (github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@v4
- run: semgrep ci --sarif > semgrep.sarif
env:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
- name: Upload SARIF file for GitHub Advanced Security Dashboard
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: semgrep.sarif
if: always()