Skip to content

chore(deps): update github-actions versions: Bump actions/upload-artifact from 18bf333cd2249fbbbdb605fd9d9ed57efd7adf34 to 184d73b71b93c222403b2e7f1ffebe4508014249 #20

chore(deps): update github-actions versions: Bump actions/upload-artifact from 18bf333cd2249fbbbdb605fd9d9ed57efd7adf34 to 184d73b71b93c222403b2e7f1ffebe4508014249

chore(deps): update github-actions versions: Bump actions/upload-artifact from 18bf333cd2249fbbbdb605fd9d9ed57efd7adf34 to 184d73b71b93c222403b2e7f1ffebe4508014249 #20

Workflow file for this run

name: semgrep
on:
pull_request: {}
workflow_dispatch: {}
push:
branches:
- main
permissions: read-all
jobs:
semgrep:
name: semgrep/ci
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
security-events: write
actions: read
if: (github.actor != 'dependabot[bot]')
steps:
- name: Checkout project
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Run Semgrep CI
run: semgrep scan --verbose --json --output=semgrep.json
- name: Store Semgrep as Artifact
uses: actions/upload-artifact@184d73b71b93c222403b2e7f1ffebe4508014249
with:
name: semgrep.json
path: semgrep.json
container:
image: semgrep/semgrep