From 89056174bb4a12f47036e9e862feb94d52f6ef67 Mon Sep 17 00:00:00 2001 From: exploide Date: Sun, 21 Apr 2024 17:14:27 +0200 Subject: [PATCH] fixed ansible-lint on GitHub actions --- .github/workflows/tests.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 92e15cc..f90c84a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -3,25 +3,19 @@ name: Tests on: push: branches: - - main + - "*" pull_request: branches: - "*" jobs: ansible-lint: + name: Ansible Lint runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - path: "${{ github.repository }}" - + - uses: actions/checkout@v4 - name: Run ansible-lint - uses: ansible-community/ansible-lint-action@main - with: - path: "${{ github.repository }}" + uses: ansible/ansible-lint@main test: needs: