build(deps): bump django from 3.2.20 to 3.2.25 (#36) #49
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
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 }}" |