Skip to content

Commit f809b45

Browse files
[SECURITY] Version Bumps and Stability Fixes
Changes in file .github/actions/test-reporter-upload/action.yml: * Version bump for Codecov Changes in file .github/workflows/Tests.yml: * fixes for stability Changes in file Makefile: * vesion bump for pip * Resolves GHSA-4xh5-x5gv-qwph Changes in file docs/requirements.txt: * vesion bump for pip * Resolves GHSA-4xh5-x5gv-qwph Changes in file requirements.txt: * vesion bump for pip * Resolves GHSA-4xh5-x5gv-qwph Changes in file tests/check_integration_coverage: * version bump * stability fixes Changes in file tests/requirements.txt: * version bump
3 parents 282d867 + 8a7acbd + b5a208a commit f809b45

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/actions/test-reporter-upload/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ runs:
304304
- name: Upload ${{ steps.output_os.outputs.os }} Python ${{ steps.output_python.outputs.python-version }} coverage to Codecov
305305
id: coverage-codecov-upload
306306
if: ${{ success() && (steps.output_can_upload.outputs.can_upload == 'true') && (steps.output_upload_tools.outputs.can_upload_to_codecov == 'true') }}
307-
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
307+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
308308
with:
309309
token: ${{ inputs.codecov-token }}
310310
job_code: ${{ inputs.job_code || '' }}

.github/workflows/Tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ jobs:
217217
make -f Makefile test || exit 1
218218
- name: Upload Python ${{ matrix.python-version }} test coverage to Codecov
219219
id: coverage-unittests-codecov-upload
220-
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
220+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
221221
with:
222222
token: ${{ secrets.CODECOV_TOKEN }}
223223
job_code: ${{ needs.check_mats.outputs.build_id }}-${{ github.run_number }}
@@ -234,7 +234,7 @@ jobs:
234234
fail_ci_if_error: false
235235
- name: Upload Python ${{ matrix.python-version }} second flag coverage to Codecov
236236
id: coverage-project-codecov-upload
237-
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
237+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
238238
with:
239239
token: ${{ secrets.CODECOV_TOKEN }}
240240
job_code: ${{ needs.check_mats.outputs.build_id }}-${{ github.run_number }}
@@ -473,7 +473,7 @@ jobs:
473473
run: make -f Makefile test-mat-doctests ;
474474
- name: Upload Python ${{ matrix.python-version }} doctest coverage to Codecov
475475
id: doctests-codecov-upload
476-
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
476+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
477477
with:
478478
token: ${{ secrets.CODECOV_TOKEN }}
479479
job_code: ${{ needs.check_mats.outputs.build_id }}-${{ github.run_number }}
@@ -895,7 +895,7 @@ jobs:
895895
shell: bash
896896
- name: Upload Python ${{ matrix.python-version }} integration coverage to Codecov
897897
id: integration-codecov-upload
898-
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
898+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
899899
with:
900900
token: ${{ secrets.CODECOV_TOKEN }}
901901
job_code: ${{ needs.check_mats.outputs.build_id }}-${{ github.run_number }}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ branding::
217217
$(QUIET)$(ECHO) ""
218218

219219
init: branding
220-
$(QUIET)$(PYTHON) -m pip $(PIP_PREFIX_FLAGS) install $(PIP_COMMON_FLAGS) $(PIP_ENV_FLAGS) "pip>=25.1.1" "setuptools>=80.9" "wheel>=0.45" "build>=1.2.1" || DO_FAIL="exit 69" ; # 69: [pip] Service unavailable - does not exist.
220+
$(QUIET)$(PYTHON) -m pip $(PIP_PREFIX_FLAGS) install $(PIP_COMMON_FLAGS) $(PIP_ENV_FLAGS) "pip>=25.2" "setuptools>=80.9" "wheel>=0.45" "build>=1.2.1" || DO_FAIL="exit 69" ; # 69: [pip] Service unavailable - does not exist.
221221
$(QUIET)$(DO_FAIL) 2>$(ERROR_LOG_PATH) >>/dev/null ;
222222
$(QUIET)$(PYTHON) -m pip $(PIP_PREFIX_FLAGS) install $(PIP_COMMON_FLAGS) $(PIP_ENV_FLAGS) -r requirements.txt 2>$(ERROR_LOG_PATH) || DO_FAIL="exit 69" ; # 69: [pip] Service unavailable - does not exist.
223223
$(QUIET)$(DO_FAIL) 2>$(ERROR_LOG_PATH) >>/dev/null ;

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ setuptools>=80.9
3737
# wheel - MIT license
3838
wheel>=0.45
3939
# pip - MIT license
40-
pip>=25.1.1
40+
pip>=25.2
4141
# build - MIT license
4242
build>=1.2.1, !=1.2.2.post1
4343
# sphinx - BSD license

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ setuptools>=80.9
2727
# virtualenv - MIT license
2828
# virtualenv>=20.26.6
2929
# pip - MIT license
30-
pip>=25.1.1
30+
pip>=25.2
3131
# build - MIT license
3232
build>=1.2.1, !=1.2.2.post1
3333
# multicast - MIT license (MITNFA)

tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,6 @@ coverage>=7.2
9393
# wheel - MIT license
9494
wheel>=0.45
9595
# pip - MIT license
96-
pip>=25.1.1
96+
pip>=25.2
9797
# build - MIT license
9898
build>=1.2.1, !=1.2.2.post1

0 commit comments

Comments
 (0)