Skip to content

Commit 9021716

Browse files
Bump pip-tools from 7.5.2 to 7.5.3 in /{{ cookiecutter.project_slug }}/.github/utils in the packages group across 1 directory (#441)
* Bump pip-tools Bumps the packages group with 1 update in the /{{ cookiecutter.project_slug }}/.github/utils directory: [pip-tools](https://github.com/jazzband/pip-tools). Updates `pip-tools` from 7.5.2 to 7.5.3 - [Release notes](https://github.com/jazzband/pip-tools/releases) - [Changelog](https://github.com/jazzband/pip-tools/blob/main/CHANGELOG.md) - [Commits](jazzband/pip-tools@v7.5.2...v7.5.3) --- updated-dependencies: - dependency-name: pip-tools dependency-version: 7.5.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: packages ... Signed-off-by: dependabot[bot] <support@github.com> * Ignore diskcache safety issue * Ignore diskcache safety issue --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Casper Welzel Andersen <casper.w.andersen@sintef.no>
1 parent 53286ee commit 9021716

3 files changed

Lines changed: 12 additions & 6 deletions

File tree

.github/workflows/ci_tests.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ jobs:
6363
uses: pypa/gh-action-pip-audit@v1.1.0
6464
with:
6565
inputs: ${{ runner.temp }}/requirements.txt
66+
# CVE-2025-69872: DiskCache 5.6.3
67+
# DiskCache (python-diskcache) through 5.6.3 uses Python pickle for serialization by default.
68+
# An attacker with write access to the cache directory can achieve arbitrary code execution
69+
# when a victim application reads from the cache.
70+
ignore-vulns: |
71+
CVE-2025-69872
6672
6773
- name: Build docs
6874
run: mkdocs build --strict
@@ -96,6 +102,3 @@ jobs:
96102
uses: pypa/gh-action-pip-audit@v1.1.0
97103
with:
98104
inputs: ${{ github.workspace }}/requirements.txt ${{ github.workspace }}/.github/utils/requirements.txt
99-
# Temporarily ignore pip vulnerability until we can upgrade to pip 25.3+
100-
ignore-vulns: |
101-
GHSA-4xh5-x5gv-qwph
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pip-tools==7.5.2
1+
pip-tools==7.5.3

{{ cookiecutter.project_slug }}/.github/workflows/ci_tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,12 @@ jobs:
7070
uses: pypa/gh-action-pip-audit@v1.1.0
7171
with:
7272
inputs: ${{ runner.temp }}/requirements.txt
73-
# Temporarily ignore pip vulnerability until we can upgrade to pip 25.3+
73+
# CVE-2025-69872: DiskCache 5.6.3
74+
# DiskCache (python-diskcache) through 5.6.3 uses Python pickle for serialization by default.
75+
# An attacker with write access to the cache directory can achieve arbitrary code execution
76+
# when a victim application reads from the cache.
7477
ignore-vulns: |
75-
GHSA-4xh5-x5gv-qwph
78+
CVE-2025-69872
7679
7780
pytest:
7881
name: pytest (${{ matrix.os[1] }}-py${{ matrix.python-version }})

0 commit comments

Comments
 (0)