Skip to content

Commit

Permalink
Merge branch 'main' into attzonko-patch-3
Browse files Browse the repository at this point in the history
  • Loading branch information
attzonko authored Feb 22, 2024
2 parents 6cd641d + fc75cf4 commit e77ccef
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:

steps:
- name: Cancel Outdated Runs
uses: styfle/[email protected].0
uses: styfle/[email protected].1
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip3-${{ hashFiles('*requirements.txt') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit-autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python-version: '3.10'

- name: Use Pip cache if available
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip3-${{ hashFiles('*requirements.txt') }}
Expand All @@ -34,7 +34,7 @@ jobs:
uses: browniebroke/pre-commit-autoupdate-action@main

- name: Create Pull request with pre-commit updates
uses: peter-evans/create-pull-request@v5
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: update/pre-commit-hooks
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:

steps:
- name: Cancel Outdated Runs
uses: styfle/[email protected].0
uses: styfle/[email protected].1
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip3-${{ hashFiles('*requirements.txt') }}
Expand All @@ -50,7 +50,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip3-${{ hashFiles('*requirements.txt') }}
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ repos:
- "--filter-files"
- repo: https://github.com/psf/black
# Code style formatting
rev: 23.12.0
rev: 24.2.0
hooks:
- id: black
exclude: (.*/)*snapshots/
- repo: https://github.com/PyCQA/flake8
# Checks the code for PEP8 violations and common pitfals
rev: 6.1.0
rev: 7.0.0
hooks:
- id: flake8
exclude: (.*/)*snapshots/
Expand Down
10 changes: 5 additions & 5 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
black==23.11.0
black==24.2.0
docformatter==1.7.5
filelock==3.13.1
flake8==6.1.0
isort==5.13.0
pytest==7.4.3
isort==5.13.2
flake8==7.0.0
pytest==8.0.1
pytest-xdist==3.5.0
pytype==2023.12.8
pytype==2024.2.13
snapshottest==0.6.0
ruff==0.1.13

0 comments on commit e77ccef

Please sign in to comment.