Skip to content

Bump cryptography from 41.0.3 to 41.0.4 #260

Bump cryptography from 41.0.3 to 41.0.4

Bump cryptography from 41.0.3 to 41.0.4 #260

Workflow file for this run

---
name: Pull Request
on:
push:
branches:
- master
pull_request:
env:
PYTHON_VERSION: '3.9'
jobs:
linting:
name: Lint files
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Setup pre-commit cache
uses: actions/cache@v3
with:
path: |
~/.cache/pre-commit
key: ${{ runner.os }}-${{ env.PYTHON_VERSION }}-pre-commit-${{ hashFiles('**/.pre-commit-config.yaml*') }}
restore-keys: |
${{ runner.os }}-${{ env.PYTHON_VERSION }}-pre-commit-
- name: Create environment
run: |
pip install pre-commit
pre-commit run --all-files