fix: remove invalid setting from renovate configuration #1337
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint ITBench playbooks | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint-kind-playbooks: | |
| name: Lint kind playbooks | |
| runs-on: ubuntu-slim | |
| steps: | |
| - uses: actions/checkout@v7.0.1 | |
| - uses: astral-sh/setup-uv@v9.0.0 | |
| - name: Install project dependencies | |
| run: | | |
| make deps | |
| - name: Lint kind playbooks | |
| uses: ansible/ansible-lint@v26.6.0 | |
| with: | |
| setup_python: "false" | |
| working_directory: clusters/kind | |
| lint-kops-playbooks: | |
| name: Lint kops playbooks | |
| runs-on: ubuntu-slim | |
| steps: | |
| - uses: actions/checkout@v7.0.1 | |
| - uses: astral-sh/setup-uv@v9.0.0 | |
| - name: Install project dependencies | |
| run: | | |
| make deps | |
| - name: Lint kops playbooks | |
| uses: ansible/ansible-lint@v26.6.0 | |
| with: | |
| setup_python: "false" | |
| working_directory: clusters/kops | |
| lint-minikube-playbooks: | |
| name: Lint minikube playbooks | |
| runs-on: ubuntu-slim | |
| steps: | |
| - uses: actions/checkout@v7.0.1 | |
| - uses: astral-sh/setup-uv@v9.0.0 | |
| - name: Install project dependencies | |
| run: | | |
| make deps | |
| - name: Lint kops playbooks | |
| uses: ansible/ansible-lint@v26.6.0 | |
| with: | |
| setup_python: "false" | |
| working_directory: clusters/minikube | |
| lint-scenario-playbooks: | |
| name: Lint scenarios playbooks and roles | |
| runs-on: ubuntu-slim | |
| steps: | |
| - uses: actions/checkout@v7.0.1 | |
| - uses: astral-sh/setup-uv@v9.0.0 | |
| - name: Install project dependencies | |
| run: | | |
| make deps | |
| - name: Lint scenario playbooks | |
| uses: ansible/ansible-lint@v26.6.0 | |
| with: | |
| setup_python: "false" |