Skip to content
This repository has been archived by the owner on Nov 6, 2024. It is now read-only.

Updated Semgrep Github Action and CODEOWNERS #4

Merged
merged 1 commit into from
May 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/semgrep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Semgrep
on:
pull_request: {}
push:
branches: ["master", "main"]
paths:
- .github/workflows/semgrep.yml
schedule:
- cron: '0 16 * * *'
jobs:
semgrep:
name: Code and Dependency Scan
runs-on: ubuntu-latest
container:
image: returntocorp/semgrep
if: (github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@v3
- run: semgrep ci
env:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/.github/workflows/semgrep.yml @hex-inc/eng_security @hex-inc/eng_infra