chore(deps): bump github/codeql-action from 4.35.5 to 4.36.0 #31
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: 'Linuxfabrik: Unit Tests' | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| pull_request: {} | |
| permissions: | |
| contents: 'read' | |
| jobs: | |
| controller-plugins: | |
| name: 'Controller plugins (Python ${{ matrix.python-version }})' | |
| runs-on: 'ubuntu-latest' | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Controller-side plugins (filter, lookup). The managed-node tier | |
| # (modules on RHEL 8 / Python 3.6) needs a UBI 8 container and is | |
| # scaffolded in tox.ini, not run here yet. | |
| python-version: | |
| - '3.9' | |
| - '3.10' | |
| - '3.11' | |
| - '3.12' | |
| - '3.13' | |
| steps: | |
| - name: 'Harden the runner (Audit all outbound calls)' | |
| uses: 'step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411' # v2.19.4 | |
| with: | |
| egress-policy: 'audit' | |
| - name: 'Checkout repository' | |
| uses: 'actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd' # v6.0.2 | |
| - name: 'Set up Python' | |
| uses: 'actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405' # v6.2.0 | |
| with: | |
| python-version: '${{ matrix.python-version }}' | |
| - name: 'Install tox' | |
| run: 'pip install tox' | |
| - name: 'Run tox for this Python (all matching ansible-core envs)' | |
| # `-f pyXYZ` selects every tox env carrying this Python's factor, | |
| # e.g. py311 -> py311-ansible215/216/217/218. | |
| run: 'tox -f py$(echo "${{ matrix.python-version }}" | tr -d ".")' |