From 3fa6af62f8e9abdd0d34360820e939bda9efec56 Mon Sep 17 00:00:00 2001 From: bikegeek Date: Wed, 18 Dec 2024 16:04:51 -0700 Subject: [PATCH] Removing, superfluous since Github automatically checks --- .github/workflows/vulnerabilities.yaml | 36 -------------------------- 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/vulnerabilities.yaml diff --git a/.github/workflows/vulnerabilities.yaml b/.github/workflows/vulnerabilities.yaml deleted file mode 100644 index 917074aa..00000000 --- a/.github/workflows/vulnerabilities.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# This workflow will check third-party Python packages for vulnerabilities using pip-audit. -# pip-audit finds vulnerabilities from packages that are dependencies of -# the packages in the requirements.txt file. A summary is generated at the end of the action. -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions - -name: Python vulnerability check - -on: - push: - branches: - - develop - - develop-ref - - feature_* - - main_* - - bugfix_* - - test_* - - issue_* - pull_request: - types: [opened, reopened, synchronize] - -jobs: - selftest: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: install - run: | - python -m venv env/ - source env/bin/activate - python -m pip install . - - uses: pypa/gh-action-pip-audit@v1.0.5 - with: - inputs: requirements.txt - virtual-environment: env/ - local: true - summary: true