forked from Electron-Cash/Electron-Cash
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (32 loc) · 1.17 KB
/
audit.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Python Audit
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
pip_audit:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out source
uses: actions/checkout@v3
- name: Merge requirements
run: contrib/deterministic-build/filter_deterministic_requirements.py > requirements.txt
- name: Run Audit
uses: pypa/[email protected]
with:
inputs: requirements.txt
# PYSEC-2022-43012, PYSEC-2022-43017 and PYSEC-2023-228 are only at build time
# Will go away once setuptools, wheel and pip is bumped
# GHSA-wj6h-64fc-37mp is only for P-256 curve which isn't used in bitcoin
# GHSA-jjg7-2v4v-x38h is a minor issue that will be fixed on idna bump (>=3.7)
# PYSEC-2024-60 is a minor issue that will be fixed on idna bump (>=3.7)
# GHSA-9wx4-h78v-vm56 is not applicable, fixed in requests >= 2.32.0
ignore-vulns: |
PYSEC-2022-43012
PYSEC-2022-43017
PYSEC-2023-228
GHSA-wj6h-64fc-37mp
GHSA-jjg7-2v4v-x38h
PYSEC-2024-60
GHSA-9wx4-h78v-vm56