Skip to content

Commit

Permalink
upgrade workflow and incorporate code review
Browse files Browse the repository at this point in the history
  • Loading branch information
kanishk16 committed Jul 4, 2022
1 parent d86d0de commit d0d215b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ jobs:
steps:

- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: 3.8

- name: Cache pip dependencies
id: cache-pip-dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
# Ubuntu-specific, see
# https://github.com/actions/cache/blob/main/examples.md#python---pip
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install 'pre-commit>=2.10.1' 'flake8'
pip install 'pre-commit>=2.10.1'
shell: bash

- name: Run pre-commit large file check
Expand Down

0 comments on commit d0d215b

Please sign in to comment.