From 0d523bdbcfecdf2781efb3de942bf9298a02e6d0 Mon Sep 17 00:00:00 2001 From: Vitaliy Kukharik Date: Fri, 16 Oct 2020 16:26:34 +0300 Subject: [PATCH] Disable ansible-lint-action on older versions of ansible. Ansible lint actions are currently broken for overrides of the Ansible version. Disable until fixed. https://github.com/ansible/ansible-lint-action/issues/41 --- .github/workflows/ansible-lint.yml | 58 +++++++++++++++--------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/.github/workflows/ansible-lint.yml b/.github/workflows/ansible-lint.yml index 379db9128..f51e029c3 100644 --- a/.github/workflows/ansible-lint.yml +++ b/.github/workflows/ansible-lint.yml @@ -28,34 +28,34 @@ jobs: add_balancer.yml args: "-x 106,208,403" - - name: Lint playbook with Ansible v2.9 - uses: ansible/ansible-lint-action@master - with: - targets: | - deploy_pgcluster.yml - add_pgnode.yml - add_balancer.yml - override-deps: ansible==2.9.14 - args: "-x 106,208,403" - - - name: Lint playbook with Ansible v2.8 - uses: ansible/ansible-lint-action@master - with: - targets: | - deploy_pgcluster.yml - add_pgnode.yml - add_balancer.yml - override-deps: ansible==2.8.16 - args: "-x 106,208,403" - - - name: Lint playbook with Ansible v2.7 - uses: ansible/ansible-lint-action@master - with: - targets: | - deploy_pgcluster.yml - add_pgnode.yml - add_balancer.yml - override-deps: ansible==2.7.18 - args: "-x 106,208,403" +# - name: Lint playbook with Ansible v2.9 +# uses: ansible/ansible-lint-action@master +# with: +# targets: | +# deploy_pgcluster.yml +# add_pgnode.yml +# add_balancer.yml +# override-deps: ansible==2.9.14 +# args: "-x 106,208,403" +# +# - name: Lint playbook with Ansible v2.8 +# uses: ansible/ansible-lint-action@master +# with: +# targets: | +# deploy_pgcluster.yml +# add_pgnode.yml +# add_balancer.yml +# override-deps: ansible==2.8.16 +# args: "-x 106,208,403" +# +# - name: Lint playbook with Ansible v2.7 +# uses: ansible/ansible-lint-action@master +# with: +# targets: | +# deploy_pgcluster.yml +# add_pgnode.yml +# add_balancer.yml +# override-deps: ansible==2.7.18 +# args: "-x 106,208,403" ...