From 76448d76480cad9994b529bf0d932439eb3d11ad Mon Sep 17 00:00:00 2001 From: Kyle Gavalchin Date: Mon, 4 Aug 2025 13:38:28 -0500 Subject: [PATCH 1/2] Update requirements-dev.txt Fixing Vulns (CVE-2025-50181 && CVE-2025-50182) Signed-off-by: Kyle Gavalchin --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index d80acb49d..10ecde2c8 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,5 +1,5 @@ pip>=21.1 -urllib3<2.0.0 +urllib3 coverage>=6.0b1 certifi>=2022.12.07 flake8 From 0d5a5e724e90818e1fdf113b767169b25b7ee94f Mon Sep 17 00:00:00 2001 From: Kyle Gavalchin Date: Mon, 4 Aug 2025 15:19:10 -0500 Subject: [PATCH 2/2] Update .travis.yml Signed-off-by: Kyle Gavalchin --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index e91b83993..a63f6ddc1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,15 +13,15 @@ deploy: on: all_branches: true # only build docker image and push once - condition: $TOXENV = py38 + condition: $TOXENV = py313 # only deploy when pushing to gh repo repo: IBM/detect-secrets matrix: include: - - env: TOXENV=py38 - python: 3.8.18 - - env: TOXENV=py39 - python: 3.9.18 + - env: TOXENV=py313 + python: 3.13.5 + - env: TOXENV=py311 + python: 3.11.13 before_install: - echo -e "machine github.com\n login $GH_ACCESS_TOKEN" >> ~/.netrc # Login to GitHub - echo -e "machine github.ibm.com\n login $GHE_ACCESS_TOKEN" >> ~/.netrc # Login to GitHub Enterprise