Skip to content

Commit b810edb

Browse files
committed
github_actions: add pip-audit check
Change-Id: I4fb7ce29ab65e93091d39267b6f420e33e7a6fba
1 parent c4ce26a commit b810edb

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/cloudbase_init_tests.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,3 +98,11 @@ jobs:
9898
exit 1
9999
}
100100
Invoke-Pester test-resources/functional-tests -Output Detailed -FullNameFilter TestVerifyAfterAllPlugins
101+
- name: Audit Cloudbase-Init pip packages
102+
shell: powershell
103+
run: |
104+
python -W ignore -m pip install pip-audit
105+
pip-audit.exe
106+
if ($LASTEXITCODE) {
107+
exit 1
108+
}

0 commit comments

Comments
 (0)