Skip to content

Bump eslint-plugin-jsdoc from 46.6.0 to 46.8.2 (#1205) #170

Bump eslint-plugin-jsdoc from 46.6.0 to 46.8.2 (#1205)

Bump eslint-plugin-jsdoc from 46.6.0 to 46.8.2 (#1205) #170

Workflow file for this run

name: Semgrep
on:
push:
branches:
- main
- main-v1
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@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- 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@6a28655e3dcb49cb0840ea372fd6d17733edd8a4 # v2.21.8
if: ${{ failure() || success() }}
with:
sarif_file: semgrep.sarif