mirror of
https://github.com/VectifyAI/PageIndex.git
synced 2026-04-26 00:26:21 +02:00
Add security CI workflows (#248)
Some checks are pending
CodeQL / Analyze (actions) (push) Waiting to run
Some checks are pending
CodeQL / Analyze (actions) (push) Waiting to run
* Add security CI workflows * Remove duplicate Python CodeQL workflow
This commit is contained in:
parent
40073375ff
commit
a51d97f63c
2 changed files with 56 additions and 0 deletions
22
.github/workflows/dependency-review.yml
vendored
Normal file
22
.github/workflows/dependency-review.yml
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
name: Dependency Review
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
dependency-review:
|
||||
name: Dependency Review
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 10
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Dependency Review
|
||||
uses: actions/dependency-review-action@v4
|
||||
with:
|
||||
fail-on-severity: moderate
|
||||
Loading…
Add table
Add a link
Reference in a new issue