Skip to content

Commit

Permalink
Update test dependencies (#3676)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea committed Aug 21, 2023
1 parent 385ad82 commit 4cc5b52
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions .config/requirements-lock.txt
Expand Up @@ -4,15 +4,15 @@
#
# pip-compile --no-annotate --output-file=.config/requirements-lock.txt --strip-extras --unsafe-package=resolvelib --unsafe-package=ruamel-yaml-clib pyproject.toml
#
ansible-compat==4.1.6
ansible-compat==4.1.7
ansible-core==2.15.3
attrs==23.1.0
black==23.7.0
bracex==2.3.post1
certifi==2023.7.22
cffi==1.15.1
charset-normalizer==3.2.0
click==8.1.6
click==8.1.7
cryptography==41.0.3
filelock==3.12.2
idna==3.4
Expand Down
4 changes: 2 additions & 2 deletions .config/requirements.txt
Expand Up @@ -4,7 +4,7 @@
#
# pip-compile --extra=docs --extra=test --no-annotate --output-file=.config/requirements.txt --strip-extras --unsafe-package=resolvelib --unsafe-package=ruamel-yaml-clib pyproject.toml
#
ansible-compat==4.1.6
ansible-compat==4.1.7
ansible-core==2.15.3
astroid==2.15.6
attrs==23.1.0
Expand Down Expand Up @@ -62,7 +62,7 @@ mkdocs-minify-plugin==0.6.4
mkdocs-monorepo-plugin==1.0.5
mkdocstrings==0.22.0
mkdocstrings-python==1.1.0
mypy==1.5.0
mypy==1.5.1
mypy-extensions==1.0.0
netaddr==0.8.0
packaging==23.1
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Expand Up @@ -130,7 +130,7 @@ repos:
types: [file, yaml]
entry: yamllint --strict
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.0.284"
rev: "v0.0.285"
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand All @@ -140,7 +140,7 @@ repos:
- id: black
language_version: python3
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.5.0
rev: v1.5.1
hooks:
- id: mypy
# empty args needed in order to match mypy cli behavior
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -223,7 +223,7 @@ python_files = [
xfail_strict = true

[tool.ruff]
required-version = "0.0.284"
required-version = "0.0.285"
ignore = [
"E501", # we use black
"ERA001", # auto-removal of commented out code affects development and vscode integration
Expand Down
4 changes: 2 additions & 2 deletions src/ansiblelint/schemas/__store__.json
@@ -1,6 +1,6 @@
{
"ansible-lint-config": {
"etag": "0ec39ba1ca9c20aea463f7f536c6903c88288f47c1b2b2b3d53b527c293f8cc3",
"etag": "786b5e9ad1a19bebdb964840a32b921201a80adcab0a04fcbd4c926fc9e90335",
"url": "https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/ansible-lint-config.json"
},
"ansible-navigator-config": {
Expand Down Expand Up @@ -48,7 +48,7 @@
"url": "https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/role-arg-spec.json"
},
"rulebook": {
"etag": "402beee94a1dfc2bf8b3d04b8d86af13293db2f7e1b8ce3da90d50f1e96b29f4",
"etag": "ee7f73bde78f2350cc6fc45e5070efaccc79a8f15f9217785df127e28e5ca9f3",
"url": "https://raw.githubusercontent.com/ansible/ansible-rulebook/main/ansible_rulebook/schema/ruleset_schema.json"
},
"tasks": {
Expand Down
8 changes: 4 additions & 4 deletions src/ansiblelint/schemas/rulebook.json
Expand Up @@ -351,9 +351,6 @@
"run_module": {
"type": "object",
"properties": {
"copy_files": {
"type": "boolean"
},
"name": {
"type": "string"
},
Expand Down Expand Up @@ -385,7 +382,10 @@
"type": "number"
},
"module_args": {
"type": "object"
"type": [
"object",
"string"
]
},
"extra_vars": {
"type": "object"
Expand Down
14 changes: 7 additions & 7 deletions test/schemas/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/schemas/package.json
Expand Up @@ -16,7 +16,7 @@
"@types/js-yaml": "^4.0.5",
"@types/minimatch": "^5.1.2",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.0",
"@types/node": "^20.5.1",
"chai": "^4.3.7",
"minimatch": "^9.0.3",
"mocha": "^10.2.0",
Expand Down

0 comments on commit 4cc5b52

Please sign in to comment.