Skip to content

build(deps): bump gunicorn from 20.0.4 to 22.0.0 #50

build(deps): bump gunicorn from 20.0.4 to 22.0.0

build(deps): bump gunicorn from 20.0.4 to 22.0.0 #50

Workflow file for this run

on: push
jobs:
license_check:
runs-on: ubuntu-20.04
steps:
- name: Checkout the code
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Get explicit and transitive dependencies
run: |
pip install -r prod_requirements.txt
pip freeze > requirements-all.txt
- name: Check python
id: license_check_report
uses: pilosus/[email protected]
with:
requirements: 'requirements-all.txt'
fail: 'StrongCopyleft,NetworkCopyleft,Error,Other'
exclude: 'pylint.*|text-unidecode.*'
- name: Print report
if: ${{ always() }}
run: echo "${{ steps.license_check_report.outputs.report }}"