Harden the website against XSS #153
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 | |
permissions: read-all | |
jobs: | |
semgrep: | |
name: Semgrep | |
runs-on: ubuntu-22.04 | |
permissions: | |
security-events: write # To upload SARIF results | |
container: | |
image: returntocorp/semgrep | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
- name: Perform Semgrep analysis | |
run: semgrep ci --sarif --output semgrep.sarif | |
env: | |
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }} | |
- name: Upload Semgrep report to GitHub | |
uses: github/codeql-action/upload-sarif@3ab4101902695724f9365a384f86c1074d94e18c # v3.24.7 | |
if: ${{ failure() || success() }} | |
with: | |
sarif_file: semgrep.sarif |