mirror of
https://github.com/VectifyAI/PageIndex.git
synced 2026-05-31 19:15:15 +02:00
Compare commits
2 commits
29b240a689
...
a51d97f63c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a51d97f63c | ||
|
|
40073375ff |
3 changed files with 58 additions and 2 deletions
34
.github/workflows/codeql.yml
vendored
Normal file
34
.github/workflows/codeql.yml
vendored
Normal file
|
|
@ -0,0 +1,34 @@
|
||||||
|
name: CodeQL
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
pull_request:
|
||||||
|
branches: [main]
|
||||||
|
schedule:
|
||||||
|
- cron: '37 9 * * 1'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
security-events: write
|
||||||
|
contents: read
|
||||||
|
actions: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
analyze:
|
||||||
|
name: Analyze (actions)
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 30
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
|
- name: Initialize CodeQL
|
||||||
|
uses: github/codeql-action/init@v4
|
||||||
|
with:
|
||||||
|
languages: actions
|
||||||
|
build-mode: none
|
||||||
|
|
||||||
|
- name: Perform CodeQL Analysis
|
||||||
|
uses: github/codeql-action/analyze@v4
|
||||||
|
with:
|
||||||
|
category: /language:actions
|
||||||
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
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
litellm==1.83.0
|
litellm==1.83.7
|
||||||
# openai-agents # optional: required for examples/agentic_vectorless_rag_demo.py
|
# openai-agents # optional: required for examples/agentic_vectorless_rag_demo.py
|
||||||
pymupdf==1.26.4
|
pymupdf==1.26.4
|
||||||
PyPDF2==3.0.1
|
PyPDF2==3.0.1
|
||||||
python-dotenv==1.1.0
|
python-dotenv==1.2.2
|
||||||
pyyaml==6.0.2
|
pyyaml==6.0.2
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue