diff --git a/.gitea/workflows/ansible-lint.yaml b/.gitea/workflows/ansible-lint.yaml index 986fa003..41e078f6 100644 --- a/.gitea/workflows/ansible-lint.yaml +++ b/.gitea/workflows/ansible-lint.yaml @@ -6,6 +6,8 @@ on: jobs: ansible-lint: + runs-on: ubuntu-latest + steps: - name: Checkout code uses: actions/checkout@v4 @@ -13,9 +15,10 @@ jobs: - name: write vault-pass run: echo ${{ secrets.VAULTPASS }} > ./vault-pass - - name: run ansible-lint + - name: Run ansible-lint uses: docker://registry.mgrote.net/ansible-devspace:latest - run: | - ansible-lint --force-color --format pep8 --show-relpath + with: + args: | + ansible-lint --force-color --format pep8 --show-relpath # VAULTPASS ist als Secrets auf Repo-Ebene angelegt