Skip to content
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
26 changes: 26 additions & 0 deletions .github/workflows/snyk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Scan Project with Snyk Python Workflow
on: push
permissions:
contents: read
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r backend/requirements.txt
pip install -r etls/loadFIPS/requirements.txt
- name: Install Snyk CLI
run: |
npm install -g snyk@latest

- name: Run Snyk scan
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
run: |
snyk test --all-projects
8 changes: 4 additions & 4 deletions backend/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Django==5.2.3
Django==5.2.9
Faker==38.2.0
Jinja2==3.1.6
MarkupSafe==3.0.2
Expand Down Expand Up @@ -41,10 +41,10 @@ rich==14.0.0
six==1.17.0
sniffio==1.3.1
sqladmin==0.20.1
sqlparse==0.5.3
starlette==0.47.2
sqlparse==0.5.4
starlette==0.49.1
text-unidecode==1.3
types-python-dateutil==2.9.0.20250516
typing_extensions==4.14.0
unittest-xml-reporting==3.2.0
urllib3==2.5.0
urllib3==2.6.0
2 changes: 1 addition & 1 deletion etls/loadFIPS/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
requests==2.32.3
requests==2.32.4
pandas==2.3.1
sqlalchemy==2.0.41
python-dotenv==1.1.1
Expand Down
6 changes: 3 additions & 3 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,8 @@
"typescript-eslint": "^8.46.0",
"vite": "^7.1.2",
"vitest": "^3.2.4"
},
"overrides": {
"mdast-util-to-hast": "13.2.1"
}
}