From 1f1f5029227e892b72dcc7660bbbfd534daec052 Mon Sep 17 00:00:00 2001 From: Lukas Rettler Date: Fri, 31 Mar 2023 11:07:08 +0200 Subject: [PATCH] test: bump pre-commit hook versions * make pre-commit happy again * updated pre-commit-config with the new hook versions * fix ansible-lint --- .ansible-lint | 3 ++- .gitignore | 6 ++++++ .pre-commit-config.yaml | 10 +++++----- CHANGELOG.md | 0 galaxy.yml | 4 +++- meta/runtime.yml | 3 +-- 6 files changed, 17 insertions(+), 9 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.ansible-lint b/.ansible-lint index 551b7c6..73bf842 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -1,6 +1,7 @@ --- # .ansible-lint -exclude_paths: [] +exclude_paths: + - "tests/integration/targets/dev*" # parseable: true # quiet: true # verbosity: 1 diff --git a/.gitignore b/.gitignore index ceddaa3..8410ae2 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,7 @@ .cache/ +.vagrant +*.log +*.vault* + +Python +__pycache__/ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a66bd25..46589c2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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" diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e69de29 diff --git a/galaxy.yml b/galaxy.yml index c3ca01e..52f93da 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -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" diff --git a/meta/runtime.yml b/meta/runtime.yml index 63340fb..84310b6 100644 --- a/meta/runtime.yml +++ b/meta/runtime.yml @@ -1,3 +1,2 @@ --- - -requires_ansible: ">=2.10" +requires_ansible: ">=2.11.0"