From 99790ac12f2d222a5f5046d543f40788a77dd645 Mon Sep 17 00:00:00 2001 From: Ozzy Date: Fri, 13 Sep 2024 11:39:41 +0100 Subject: [PATCH] actions vs jobs --- .github/workflows/ansible-lint.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ansible-lint.yml b/.github/workflows/ansible-lint.yml index f121b52..0cafbc4 100644 --- a/.github/workflows/ansible-lint.yml +++ b/.github/workflows/ansible-lint.yml @@ -17,6 +17,11 @@ permissions: jobs: ansible-lint: name: ansible-lint - uses: ansible/ansible_lint.yaml@main - with: - args: '-p playbooks' \ No newline at end of file + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Ansible lint + uses: ansible/ansible_lint.yaml@main + with: + args: '-p playbooks' \ No newline at end of file