You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2022/09/02 19:06:45 UTC

[libcloud] branch dependabot/pip/more-itertools-8.14.0 updated (c10013aac -> 2463b1af7)

This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a change to branch dependabot/pip/more-itertools-8.14.0
in repository https://gitbox.apache.org/repos/asf/libcloud.git


    from c10013aac Bump more-itertools from 8.11.0 to 8.14.0
     add f875502c4 Add new GHA step which runs pip audit check.
     add c1645fa1b Squashed '.github/actions/gh-action-pip-audit/' content from commit cce88443a
     add 2cbd7a45e Merge commit 'c1645fa1b1e016779b826f467deb740aabe90eb8' as '.github/actions/gh-action-pip-audit'
     add ca81f08fa Add github action to the repo as subtree since ASF policy doesn't allow using external actions.
     add 50d348b41 Add cleanup step.
     add 411048b16 Update ignored directories.
     add 786c5ec01 Merge branch 'trunk' into pip_audit_gha_check
     add a3e8277ee Merge branch 'pip_audit_gha_check' of http://gitbox.apache.org/repos/asf/libcloud into pip_audit_gha_check
     add c996dd6d5 Merge pull request #1753 from apache/pip_audit_gha_check
     add 2463b1af7 Merge branch 'trunk' into dependabot/pip/more-itertools-8.14.0

No new revisions were added by this update.

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                         |  12 +
 scripts/check_asf_license_headers.py               |   1 +
 16 files changed, 823 insertions(+), 25 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