name: ansible-lint on: workflow_dispatch: push: branches: [ master ] pull_request: jobs: ansible-lint: name: Ansible Lint steps: - name: Checkout code uses: actions/checkout@v4 - name: Run Gitleaks uses: docker://zricethezav/gitleaks:v8.18.4 options: --entrypoint ansible-lint with: args: --force-color --format pep8 --show-relpath gitleaks: steps: - name: Checkout code uses: actions/checkout@v4 - name: Run Gitleaks uses: docker://zricethezav/gitleaks:v8.18.4 with: args: detect --no-git --verbose --source ${{ github.workspace }} # VAULTPASS ist als Secrets auf Repo-Ebene angelegt