Skip to content

chore: upgrade testing library #5343

chore: upgrade testing library

chore: upgrade testing library #5343

Workflow file for this run

# Name of this GitHub Actions workflow.
name: Semgrep
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
paths:
- .github/workflows/semgrep.yml
schedule:
- cron: '0 0 * * 0'
jobs:
semgrep:
environment: pull_request_unsafe
name: Scan
runs-on: ubuntu-latest
container:
# A Docker image with Semgrep installed. Do not change this.
image: returntocorp/semgrep
# Skip any PR created by dependabot to avoid permission issues:
if: (github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 #v4.1.0
# Run the "semgrep ci" command on the command line of the docker image.
- run: semgrep ci
env:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}