Skip to content

Commit

Permalink
⬆️ Combined updates (#68)
Browse files Browse the repository at this point in the history
* Bump actions/cache from 2 to 3

Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v2...v3)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/asottile/pyupgrade: v2.31.0 → v2.31.1](asottile/pyupgrade@v2.31.0...v2.31.1)
- [github.com/psf/black: 22.1.0 → 22.3.0](psf/black@22.1.0...22.3.0)
- [github.com/pre-commit/mirrors-prettier: v2.5.1 → v2.6.1](pre-commit/mirrors-prettier@v2.5.1...v2.6.1)
- [github.com/nbQA-dev/nbQA: 1.3.0 → 1.3.1](nbQA-dev/nbQA@1.3.0...1.3.1)
- [github.com/pre-commit/mirrors-mypy: v0.931 → v0.942](pre-commit/mirrors-mypy@v0.931...v0.942)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Apr 2, 2022
1 parent abd21ed commit 816cdab
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/autoupdate-pre-commit-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- name: Set up Python
uses: actions/setup-python@v3
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: pre-commit-autoupdate
Expand Down
17 changes: 9 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ repos:
- id: absolufy-imports

- repo: https://github.com/asottile/pyupgrade
rev: v2.31.0
rev: v2.31.1
hooks:
- id: pyupgrade
args: [--py38-plus]

- repo: https://github.com/psf/black
rev: 22.1.0
rev: 22.3.0
hooks:
- id: black
language_version: python3
Expand All @@ -47,7 +47,7 @@ repos:
- id: setup-cfg-fmt

- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.5.1 # Use the sha or tag you want to point at
rev: v2.6.1 # Use the sha or tag you want to point at
hooks:
- id: prettier

Expand All @@ -59,24 +59,24 @@ repos:
args: [--strip-empty-cells]

- repo: https://github.com/nbQA-dev/nbQA
rev: 1.3.0
rev: 1.3.1
hooks:
- id: nbqa-black
additional_dependencies: [black==21.6b0]
additional_dependencies: [black==22.3.0]
args: [--nbqa-mutate]
- id: nbqa-pyupgrade
additional_dependencies: [pyupgrade==2.19.4]
additional_dependencies: [pyupgrade==2.31.1]
args: [--nbqa-mutate, --py38-plus]
- id: nbqa-flake8
- id: nbqa-check-ast
- id: nbqa-isort
additional_dependencies: [isort==5.8.0]
additional_dependencies: [isort==5.10.1]
args: [--nbqa-mutate]

# Linters

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.931
rev: v0.942
hooks:
- id: mypy
exclude: ^docs
Expand All @@ -88,6 +88,7 @@ repos:
- id: interrogate
args: [-vv, --config=pyproject.toml, pyglotaran_extras]
pass_filenames: false
additional_dependencies: [click<8]

- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
Expand Down

0 comments on commit 816cdab

Please sign in to comment.