From 729e60e2b0baf0969763cae1fb53b42a5cfed001 Mon Sep 17 00:00:00 2001 From: AnsibleGuy Date: Sat, 28 Oct 2023 12:49:00 +0200 Subject: [PATCH] added version-info to linter-execution --- .github/workflows/autolint.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/autolint.yml b/.github/workflows/autolint.yml index 56bfab4a..ea4d4376 100644 --- a/.github/workflows/autolint.yml +++ b/.github/workflows/autolint.yml @@ -33,11 +33,15 @@ jobs: shell: bash - name: Running PyLint - run: pylint --recursive=y . + run: | + pylint --version + pylint --recursive=y . shell: bash - name: Running YamlLint - run: yamllint . + run: | + yamllint --version + yamllint . shell: bash - name: Preparing collection for AnsibleLint @@ -47,5 +51,7 @@ jobs: shell: bash - name: Running AnsibleLint - run: ANSIBLE_COLLECTIONS_PATH=/tmp/ansible_lint/collections ansible-lint -c .ansible-lint.yml + run: | + ansible-lint --version + ANSIBLE_COLLECTIONS_PATH=/tmp/ansible_lint/collections ansible-lint -c .ansible-lint.yml shell: bash