This repository was archived by the owner on Feb 24, 2026. It is now read-only.
build(deps): Bump the docker-production-dependencies group across 2 directories with 1 update #963
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 SRE playbooks | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - sre/playbooks/** | |
| - sre/roles/** | |
| - sre/dev/remote_cluster/playbooks/** | |
| - sre/dev/remote_cluster/roles/** | |
| jobs: | |
| lint-main-playbooks: | |
| name: Lint playbooks and roles in main directory | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6.0.1 | |
| - uses: actions/setup-python@v6.1.0 | |
| with: | |
| python-version: '3.13' | |
| - name: Install Python dependencies | |
| run: | | |
| pip install -r sre/requirements.txt | |
| pip install -r sre/requirements-dev.txt | |
| - name: Run ansible-lint | |
| uses: ansible/ansible-lint@v25.12.2 | |
| with: | |
| args: playbooks roles | |
| setup_python: "false" | |
| working_directory: sre | |
| requirements_file: requirements.yaml | |
| lint-remote-cluster-playbooks: | |
| name: Lint playbooks and roles in remote cluster directory | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6.0.1 | |
| - uses: actions/setup-python@v6.1.0 | |
| with: | |
| python-version: '3.13' | |
| - name: Install Python dependencies | |
| run: | | |
| pip install -r sre/requirements.txt | |
| pip install -r sre/requirements-dev.txt | |
| - name: Run ansible-lint | |
| uses: ansible/ansible-lint@v25.12.2 | |
| with: | |
| setup_python: "false" | |
| working_directory: sre/dev/remote_cluster | |
| requirements_file: ../../requirements.yaml |