This is an automated email from the ASF dual-hosted git repository. tomaz pushed a change to branch pip_audit_gha_check in repository https://gitbox.apache.org/repos/asf/libcloud.git
from f875502c4 Add new GHA step which runs pip audit check. new c1645fa1b Squashed '.github/actions/gh-action-pip-audit/' content from commit cce88443a new 2cbd7a45e Merge commit 'c1645fa1b1e016779b826f467deb740aabe90eb8' as '.github/actions/gh-action-pip-audit' new ca81f08fa Add github action to the repo as subtree since ASF policy doesn't allow using external actions. The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../gh-action-pip-audit/.github/workflows/ci.yml | 18 + .../.github/workflows/selftest.yml | 90 +++++ .github/actions/gh-action-pip-audit/.gitignore | 1 + .../actions/gh-action-pip-audit/LICENSE | 25 -- .github/actions/gh-action-pip-audit/Makefile | 17 + .github/actions/gh-action-pip-audit/README.md | 365 +++++++++++++++++++++ .github/actions/gh-action-pip-audit/action.py | 169 ++++++++++ .github/actions/gh-action-pip-audit/action.yml | 87 +++++ .../gh-action-pip-audit/dev-requirements.txt | 3 + .../actions/gh-action-pip-audit/requirements.txt | 1 + .../actions/gh-action-pip-audit/setup/setup.bash | 28 ++ .../actions/gh-action-pip-audit/setup/venv.bash | 24 ++ .../test/pyproject/pyproject.toml | 6 + .../gh-action-pip-audit/test/vulnerable.txt | 1 + .github/workflows/main.yml | 2 +- 15 files changed, 811 insertions(+), 26 deletions(-) create mode 100644 .github/actions/gh-action-pip-audit/.github/workflows/ci.yml create mode 100644 .github/actions/gh-action-pip-audit/.github/workflows/selftest.yml create mode 100644 .github/actions/gh-action-pip-audit/.gitignore copy LICENSE => .github/actions/gh-action-pip-audit/LICENSE (89%) create mode 100644 .github/actions/gh-action-pip-audit/Makefile create mode 100644 .github/actions/gh-action-pip-audit/README.md create mode 100755 .github/actions/gh-action-pip-audit/action.py create mode 100644 .github/actions/gh-action-pip-audit/action.yml create mode 100644 .github/actions/gh-action-pip-audit/dev-requirements.txt create mode 100644 .github/actions/gh-action-pip-audit/requirements.txt create mode 100644 .github/actions/gh-action-pip-audit/setup/setup.bash create mode 100644 .github/actions/gh-action-pip-audit/setup/venv.bash create mode 100644 .github/actions/gh-action-pip-audit/test/pyproject/pyproject.toml create mode 100644 .github/actions/gh-action-pip-audit/test/vulnerable.txt