Bump charset-normalizer from 2.0.4 to 3.3.2 #9
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-SAST | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- '**' # Triggers on any branch for pull requests | |
jobs: | |
docker-security-scans: | |
name: Docker security scans | |
runs-on: ubuntu-latest | |
container: | |
# Use the latest Semgrep Docker image | |
image: returntocorp/semgrep:latest | |
# Skip any PR created by dependabot to avoid permission issues | |
if: (github.actor != 'dependabot[bot]') | |
steps: | |
# Fetch project source with GitHub Actions Checkout. | |
- uses: actions/checkout@v3 | |
# Run the "semgrep ci" command on the command line of the docker image. | |
- run: semgrep ci | |
env: | |
SEMGREP_RULES: "p/owasp-top-ten" # more at semgrep.dev/explore |