Skip to content

Bump cryptography from 41.0.4 to 42.0.4 #46

Bump cryptography from 41.0.4 to 42.0.4

Bump cryptography from 41.0.4 to 42.0.4 #46

Workflow file for this run

---
name: pre-commit
on:
pull_request:
branches: [master]
push:
branches: [master]
jobs:
pre-commit:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Autoupdate pre-commit
run: pre-commit autoupdate
- uses: pre-commit/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}