test: bump pre-commit hook versions

* make pre-commit happy again
* updated pre-commit-config with the new hook versions
* fix ansible-lint
This commit is contained in:
Lukas Rettler 2023-03-31 11:07:08 +02:00
parent 313493dfe0
commit 1f1f502922
6 changed files with 17 additions and 9 deletions

View File

@ -1,6 +1,7 @@
---
# .ansible-lint
exclude_paths: []
exclude_paths:
- "tests/integration/targets/dev*"
# parseable: true
# quiet: true
# verbosity: 1

6
.gitignore vendored
View File

@ -1 +1,7 @@
.cache/
.vagrant
*.log
*.vault*
Python
__pycache__/

View File

@ -3,7 +3,7 @@
repos:
- repo: "https://github.com/pre-commit/pre-commit-hooks"
rev: "v3.4.0"
rev: "v4.4.0"
hooks:
- id: "check-added-large-files"
- id: "check-case-conflict"
@ -16,18 +16,18 @@ repos:
- id: "trailing-whitespace"
- repo: "https://github.com/adrienverge/yamllint"
rev: "v1.26.1"
rev: "v1.30.0"
hooks:
- id: "yamllint"
args:
- "-c=.yamllint"
- repo: "https://github.com/ansible/ansible-lint"
rev: "v5.0.8"
rev: "v6.14.3"
hooks:
- id: "ansible-lint"
- repo: "https://gitlab.com/pycqa/flake8"
rev: "3.9.2"
- repo: "https://github.com/pycqa/flake8"
rev: "6.0.0"
hooks:
- id: "flake8"

0
CHANGELOG.md Normal file
View File

View File

@ -10,7 +10,7 @@ namespace: "univention"
name: "ucs_modules"
# The version of the collection. Must be compatible with semantic versioning
version: "0.0.0"
version: "1.2.0"
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: "README.md"
@ -34,6 +34,8 @@ license:
# A list of tags you want to associate with the collection for indexing/searching. A tag name has the same character
# requirements as 'namespace' and 'name'
tags:
- "application"
- "tools"
- "univention"
- "ucs"

View File

@ -1,3 +1,2 @@
---
requires_ansible: ">=2.10"
requires_ansible: ">=2.11.0"