3232 - uses : actions/checkout@v3
3333 - name : install
3434 run : python -m pip install .
35- - uses : pypa/gh-action-pip-audit@v1.0.5
35+ - uses : pypa/gh-action-pip-audit@v1.0.6
3636` ` `
3737
3838Or, with a virtual environment:
4848 python -m venv env/
4949 source env/bin/activate
5050 python -m pip install .
51- - uses : pypa/gh-action-pip-audit@v1.0.5
51+ - uses : pypa/gh-action-pip-audit@v1.0.6
5252 with :
5353 virtual-environment : env/
5454` ` `
@@ -72,15 +72,15 @@ The `inputs` setting controls what sources `pip-audit` runs on.
7272To audit one or more requirements-style inputs :
7373
7474` ` ` yaml
75- - uses: pypa/gh-action-pip-audit@v1.0.5
75+ - uses: pypa/gh-action-pip-audit@v1.0.6
7676 with:
7777 inputs: requirements.txt dev-requirements.txt
7878` ` `
7979
8080To audit a project that uses `pyproject.toml` for its dependencies :
8181
8282` ` ` yaml
83- - uses: pypa/gh-action-pip-audit@v1.0.5
83+ - uses: pypa/gh-action-pip-audit@v1.0.6
8484 with:
8585 # NOTE: this can be ` .`, for the current directory
8686 inputs : path/to/project/
@@ -108,7 +108,7 @@ Example: use the virtual environment specified at `env/`, relative to the
108108current directory :
109109
110110` ` ` yaml
111- - uses: pypa/gh-action-pip-audit@v1.0.5
111+ - uses: pypa/gh-action-pip-audit@v1.0.6
112112 with:
113113 virtual-environment: env/
114114 # Note the absence of ` input:`, since we're auditing the environment.
@@ -128,7 +128,7 @@ installed directly into the current environment are included.
128128Example:
129129
130130``` yaml
131- - uses : pypa/gh-action-pip-audit@v1.0.5
131+ - uses : pypa/gh-action-pip-audit@v1.0.6
132132 with :
133133 local : true
134134` ` `
@@ -145,7 +145,7 @@ It's directly equivalent to `pip-audit --vulnerability-service=...`.
145145To audit with OSV instead of PyPI :
146146
147147` ` ` yaml
148- - uses: pypa/gh-action-pip-audit@v1.0.5
148+ - uses: pypa/gh-action-pip-audit@v1.0.6
149149 with:
150150 vulnerability-service: osv
151151` ` `
@@ -160,7 +160,7 @@ It's directly equivalent to `pip-audit --require-hashes ...`.
160160Example :
161161
162162` ` ` yaml
163- - uses: pypa/gh-action-pip-audit@v1.0.5
163+ - uses: pypa/gh-action-pip-audit@v1.0.6
164164 with:
165165 # NOTE: only works with requirements-style inputs
166166 inputs: requirements.txt
@@ -177,7 +177,7 @@ It's directly equivalent to `pip-audit --no-deps ...`.
177177Example :
178178
179179` ` ` yaml
180- - uses: pypa/gh-action-pip-audit@v1.0.5
180+ - uses: pypa/gh-action-pip-audit@v1.0.6
181181 with:
182182 # NOTE: only works with requirements-style inputs
183183 inputs: requirements.txt
@@ -195,7 +195,7 @@ is rendered at the end of the action.
195195Example :
196196
197197` ` ` yaml
198- - uses: pypa/gh-action-pip-audit@v1.0.5
198+ - uses: pypa/gh-action-pip-audit@v1.0.6
199199 with:
200200 summary: false
201201 ` ` `
@@ -214,7 +214,7 @@ indices to search (such as a corporate index with private packages), see
214214Example :
215215
216216` ` ` yaml
217- - uses: pypa/gh-action-pip-audit@v1.0.5
217+ - uses: pypa/gh-action-pip-audit@v1.0.6
218218 with:
219219 index-url: https://example.corporate.local/simple
220220` ` `
@@ -229,7 +229,7 @@ indexes to search when resolving dependencies. Each URL is whitespace-separated.
229229Example :
230230
231231` ` ` yaml
232- - uses: pypa/gh-action-pip-audit@v1.0.5
232+ - uses: pypa/gh-action-pip-audit@v1.0.6
233233 with:
234234 extra-index-urls: |
235235 https://example.corporate.local/simple
@@ -246,7 +246,7 @@ ignore (i.e., exclude from the results) if present. Each ID is whitespace-separa
246246Example
247247
248248` ` ` yaml
249- - uses: pypa/gh-action-pip-audit@v1.0.5
249+ - uses: pypa/gh-action-pip-audit@v1.0.6
250250 with:
251251 ignore-vulns: |
252252 GHSA-XXXX-YYYYYY
@@ -276,7 +276,7 @@ Example
276276 Example :
277277
278278 ` ` ` yaml
279- - uses: pypa/gh-action-pip-audit@v1.0.5
279+ - uses: pypa/gh-action-pip-audit@v1.0.6
280280 with:
281281 internal-be-careful-allow-failure: true
282282 ` ` `
@@ -295,7 +295,7 @@ Example
295295 Example :
296296
297297 ` ` ` yaml
298- - uses: pypa/gh-action-pip-audit@v1.0.5
298+ - uses: pypa/gh-action-pip-audit@v1.0.6
299299 with:
300300 internal-be-careful-debug: true
301301 ` ` `
@@ -309,7 +309,7 @@ to `pip-audit`.
309309Example :
310310
311311` ` ` yaml
312- - uses: pypa/gh-action-pip-audit@v1.0.5
312+ - uses: pypa/gh-action-pip-audit@v1.0.6
313313 with:
314314 internal-be-careful-extra-flags: --not-a-real-pip-audit-flag
315315` ` `
@@ -326,7 +326,7 @@ If you're auditing a requirements file, consider setting `no-deps: true` or
326326`require-hashes : true`:
327327
328328` ` ` yaml
329- - uses: pypa/gh-action-pip-audit@v1.0.5
329+ - uses: pypa/gh-action-pip-audit@v1.0.6
330330 with:
331331 inputs: requirements.txt
332332 require-hashes: true
@@ -335,7 +335,7 @@ If you're auditing a requirements file, consider setting `no-deps: true` or
335335or :
336336
337337` ` ` yaml
338- - uses: pypa/gh-action-pip-audit@v1.0.5
338+ - uses: pypa/gh-action-pip-audit@v1.0.6
339339 with:
340340 inputs: requirements.txt
341341 no-deps: true
@@ -356,7 +356,7 @@ by the host system itself, or other Python projects that happen to be installed.
356356To minimize external dependencies, you can opt into a virtual environment :
357357
358358` ` ` yaml
359- - uses: pypa/gh-action-pip-audit@v1.0.5
359+ - uses: pypa/gh-action-pip-audit@v1.0.6
360360 with:
361361 # must be populated earlier in the CI
362362 virtual-environment: env/
@@ -366,7 +366,7 @@ and, more aggressively, specify that only dependencies marked as "local"
366366in the virtual environment should be included :
367367
368368` ` ` yaml
369- - uses: pypa/gh-action-pip-audit@v1.0.5
369+ - uses: pypa/gh-action-pip-audit@v1.0.6
370370 with:
371371 # must be populated earlier in the CI
372372 virtual-environment: env/
@@ -396,7 +396,7 @@ jobs:
396396 run: |
397397 pipx run pipfile-requirements Pipfile.lock > requirements.txt
398398
399- - uses: pypa/gh-action-pip-audit@v1.0.5
399+ - uses: pypa/gh-action-pip-audit@v1.0.6
400400 with:
401401 inputs: requirements.txt
402402` ` `
0 commit comments