Merge release into main to bring main branch up to date post release and preserve versioning #334
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pip-audit | |
on: | |
workflow_dispatch: | |
push: | |
branches: [release] | |
paths-ignore: | |
- docs/** | |
- README.md | |
- .github/** | |
- cloudformation/** | |
- db_scripts/** | |
- jenkins/** | |
- kibana-proxy/** | |
- postgresql/** | |
pull_request: | |
branches: [main] | |
paths-ignore: | |
- docs/** | |
- README.md | |
- .github/** | |
- cloudformation/** | |
- db_scripts/** | |
- jenkins/** | |
- kibana-proxy/** | |
- postgresql/** | |
jobs: | |
pip-audit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: 'Generate requirements.txt' | |
run: | | |
pipx run pipfile-requirements Pipfile.lock > requirements.txt | |
- uses: pypa/gh-action-pip-audit@v1.0.8 | |
with: | |
inputs: requirements.txt |