Skip to content

Commit

Permalink
Optimize dependency updates (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea authored Dec 7, 2023
1 parent 35d8e65 commit d6cc40b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ updates:
- dependabot-deps-updates
- skip-changelog
versioning-strategy: lockfile-only
groups:
runtime:
patterns:
- ansible-core
- pytest
dev:
patterns:
- "*"
exclude-patterns:
- ansible-core
- pytest
- package-ecosystem: "github-actions"
directory: "/"
schedule:
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ repos:
hooks:
- id: remove-tabs
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.1.6"
rev: "v0.1.7"
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- repo: https://github.com/pre-commit/mirrors-prettier
# keep it before yamllint
rev: v4.0.0-alpha.3
rev: v4.0.0-alpha.3-1
hooks:
- id: prettier
always_run: true
Expand All @@ -51,12 +51,12 @@ repos:
- id: black
language_version: python3
- repo: https://github.com/streetsidesoftware/cspell-cli
rev: v8.0.0
rev: v8.1.1
hooks:
- id: cspell
name: Spell check with cspell
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.27.2
rev: 0.27.3
hooks:
- id: check-github-workflows
- repo: https://github.com/jsh9/pydoclint
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ addopts = ["--tb=native"]
markers = ["old", "unit", "requires_ansible_v2"]

[tool.ruff]
required-version = "0.1.6"
select = ["ALL"]
ignore = [
"E501", # we use black
Expand Down

0 comments on commit d6cc40b

Please sign in to comment.