Skip to content

build(deps): bump django from 3.2.20 to 3.2.25 (#36) #49

build(deps): bump django from 3.2.20 to 3.2.25 (#36)

build(deps): bump django from 3.2.20 to 3.2.25 (#36) #49

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 }}"