chore(deps): Bump github/codeql-action from 3.26.2 to 3.26.5 #1539
Workflow file for this run
This file contains 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: Molecule CI/CD | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
tags-ignore: ["**"] | |
schedule: | |
- cron: "0 0 1 * *" | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
ansible-lint: | |
name: Ansible Lint | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Check out the codebase | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Set up Python 3 | |
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1 | |
with: | |
python-version: 3.x | |
- name: Install Ansible core and Ansible Lint | |
run: pip3 install -r .github/workflows/requirements/requirements_ansible_lint.txt | |
- name: Install Ansible core collection dependencies | |
run: ansible-galaxy install -r .github/workflows/requirements/requirements_collections.yml | |
- name: Run Ansible Lint | |
run: ansible-lint --force-color | |
molecule: | |
name: Molecule | |
runs-on: ubuntu-24.04 | |
needs: ansible-lint | |
env: | |
AGENT_DATA_PLANE_KEY: ${{ secrets.AGENT_DATA_PLANE_KEY }} | |
AMPLIFY_API_KEY: ${{ secrets.AMPLIFY_API_KEY }} | |
AMPLIFY_EMAIL: ${{ secrets.AMPLIFY_EMAIL }} | |
AMPLIFY_PASSWORD: ${{ secrets.AMPLIFY_PASSWORD }} | |
NGINX_CRT: ${{ secrets.NGINX_CRT }} | |
NGINX_KEY: ${{ secrets.NGINX_KEY }} | |
ONE_API_TOKEN: ${{ secrets.ONE_API_TOKEN }} | |
ONE_TENANT: ${{ secrets.ONE_TENANT }} | |
strategy: | |
fail-fast: false | |
matrix: | |
scenario: | |
- agent | |
- amplify | |
- default | |
- distribution | |
- downgrade | |
- downgrade-plus | |
- plus | |
- source | |
- source-version | |
- stable | |
- uninstall | |
- uninstall-plus | |
- upgrade | |
- upgrade-plus | |
- version | |
steps: | |
- name: Check out the codebase | |
if: ${{ !(contains(matrix.scenario, 'plus')) || (env.NGINX_CRT != 0 && env.NGINX_KEY != 0) }} | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Set up Python 3 | |
if: ${{ !(contains(matrix.scenario, 'plus')) || (env.NGINX_CRT != 0 && env.NGINX_KEY != 0) }} | |
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1 | |
with: | |
python-version: 3.x | |
- name: Install Ansible core and Molecule | |
if: ${{ !(contains(matrix.scenario, 'plus')) || (env.NGINX_CRT != 0 && env.NGINX_KEY != 0) }} | |
run: pip3 install -r .github/workflows/requirements/requirements_molecule.txt | |
- name: Install Ansible core collection dependencies | |
if: ${{ !(contains(matrix.scenario, 'plus')) || (env.NGINX_CRT != 0 && env.NGINX_KEY != 0) }} | |
run: ansible-galaxy install -r .github/workflows/requirements/requirements_collections.yml | |
- name: Run Molecule tests | |
if: ${{ !(contains(matrix.scenario, 'plus')) || (env.NGINX_CRT != 0 && env.NGINX_KEY != 0) }} | |
run: molecule test -s ${{ matrix.scenario }} | |
env: | |
PY_COLORS: 1 | |
ANSIBLE_FORCE_COLOR: 1 |