Skip to content

build(deps): bump pypa/gh-action-pypi-publish from 1.10.1 to 1.10.2 in the production-dependencies group #580

build(deps): bump pypa/gh-action-pypi-publish from 1.10.1 to 1.10.2 in the production-dependencies group

build(deps): bump pypa/gh-action-pypi-publish from 1.10.1 to 1.10.2 in the production-dependencies group #580

Workflow file for this run

name: Semgrep
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch: {}
jobs:
semgrep:
name: semgrep/ci
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
container:
image: returntocorp/semgrep
if: (github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@v4
- run: semgrep --config auto . --sarif --output semgrep.sarif
env:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: semgrep.sarif
if: always()