From 433405d9d3f257fa962e36a76411bf9d69597f4a Mon Sep 17 00:00:00 2001 From: Slavi Pantaleev Date: Sun, 20 Nov 2022 19:13:00 +0200 Subject: [PATCH] Try to fix ansible-lint Github action --- .config/ansible-lint.yml | 2 +- .github/workflows/matrix.yml | 2 +- Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/ansible-lint.yml b/.config/ansible-lint.yml index 22ba92532..00d62f207 100644 --- a/.config/ansible-lint.yml +++ b/.config/ansible-lint.yml @@ -13,4 +13,4 @@ skip_list: # before finally dumping it to a file. - template-instead-of-copy -offline: false +offline: true diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index a9e8b9906..6c7ce3cad 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -23,4 +23,4 @@ jobs: - name: Run ansible-lint uses: ansible-community/ansible-lint-action@v6.8.2 with: - path: "playbooks/matrix.yml" + path: roles/custom diff --git a/Makefile b/Makefile index b7fc41bd7..3379b8fff 100644 --- a/Makefile +++ b/Makefile @@ -8,4 +8,4 @@ roles: ## Pull roles ansible-galaxy install -r requirements.yml -p roles/galaxy/ --force lint: ## Runs ansible-lint against all roles in the playbook - ansible-lint + ansible-lint roles/custom