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
9 changes: 6 additions & 3 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@ jobs:
uses: pypa/gh-action-pip-audit@v1.1.0
with:
inputs: ${{ runner.temp }}/requirements.txt
# CVE-2025-69872: DiskCache 5.6.3
# DiskCache (python-diskcache) through 5.6.3 uses Python pickle for serialization by default.
# An attacker with write access to the cache directory can achieve arbitrary code execution
# when a victim application reads from the cache.
ignore-vulns: |
CVE-2025-69872

- name: Build docs
run: mkdocs build --strict
Expand Down Expand Up @@ -96,6 +102,3 @@ jobs:
uses: pypa/gh-action-pip-audit@v1.1.0
with:
inputs: ${{ github.workspace }}/requirements.txt ${{ github.workspace }}/.github/utils/requirements.txt
# Temporarily ignore pip vulnerability until we can upgrade to pip 25.3+
ignore-vulns: |
GHSA-4xh5-x5gv-qwph
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pip-tools==7.5.2
pip-tools==7.5.3
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,12 @@ jobs:
uses: pypa/gh-action-pip-audit@v1.1.0
with:
inputs: ${{ runner.temp }}/requirements.txt
# Temporarily ignore pip vulnerability until we can upgrade to pip 25.3+
# CVE-2025-69872: DiskCache 5.6.3
# DiskCache (python-diskcache) through 5.6.3 uses Python pickle for serialization by default.
# An attacker with write access to the cache directory can achieve arbitrary code execution
# when a victim application reads from the cache.
ignore-vulns: |
GHSA-4xh5-x5gv-qwph
CVE-2025-69872

pytest:
name: pytest (${{ matrix.os[1] }}-py${{ matrix.python-version }})
Expand Down