Adding upstream version 2.6.3.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
4d8cd0ce4c
commit
2b08a89310
39 changed files with 2140 additions and 0 deletions
20
.github/workflows/semgrep.yml
vendored
Normal file
20
.github/workflows/semgrep.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Name of this GitHub Actions workflow.
|
||||
name: Semgrep
|
||||
|
||||
on:
|
||||
pull_request: {}
|
||||
|
||||
jobs:
|
||||
semgrep:
|
||||
name: Scan
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: returntocorp/semgrep
|
||||
# Skip any PR created by dependabot to avoid permission issues
|
||||
if: (github.actor != 'dependabot[bot]')
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- run: semgrep ci
|
||||
env:
|
||||
SEMGREP_RULES: p/default p/golang p/secrets
|
Loading…
Add table
Add a link
Reference in a new issue