From 5ff5eaa22182507acd85d942ff217c93dfbd8191 Mon Sep 17 00:00:00 2001 From: edoapra Date: Fri, 20 Jan 2023 16:41:08 -0800 Subject: [PATCH] fix setuptools vulnerability --- .github/workflows/lint_python.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index d987d531ca..0310260ad1 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -20,6 +20,7 @@ jobs: - run: pip install bandit black codespell flake8 flake8-2020 flake8-bugbear flake8-comprehensions isort mypy pytest pyupgrade safety - run: python -m pip install --upgrade requests + - run: python -m pip install 'setuptools>=65.5.1' - run: bandit --recursive --skip B101,B110,B306,B307,B311,B605,B607 . - run: black --check . || true - run: codespell --count