chore(deps): update molecule requirement from ~=25.9.0 to ~=25.11.0 #505
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| env: | |
| galaxy-name: "dokku_bot.ansible_dokku" | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.13" | |
| # required to install ansible role dependencies | |
| - name: Install requirements | |
| run: | | |
| pip install -r requirements.txt | |
| - name: Create and install role requirements | |
| run: | | |
| make ansible-role-requirements.yml | |
| ansible-galaxy install -r ansible-role-requirements.yml | |
| - name: Clean up recursive role installation | |
| run: | | |
| # Remove any recursive installations that might cause ansible-lint loops | |
| if [ -d ".ansible/roles/${{ env.galaxy-name }}" ]; then | |
| rm -rf ".ansible/roles/${{ env.galaxy-name }}" | |
| fi | |
| - uses: pre-commit/[email protected] | |
| readme: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.13" | |
| - name: Install requirements | |
| run: pip install -r requirements.txt | |
| - name: Update README | |
| run: | | |
| set -e; | |
| make generate; | |
| if [[ $(git diff) ]]; then | |
| echo "Please run `make generate`"; | |
| git status --short; | |
| git diff; | |
| exit 1; | |
| fi | |
| molecule: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| distro: [ubuntu2004, ubuntu2204, ubuntu2404, debian11, debian12] | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| path: ${{ env.galaxy-name }} | |
| - name: Set up Python 3.13 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.13" | |
| - name: Upgrade pip | |
| run: | | |
| pip install --upgrade pip wheel | |
| pip --version | |
| - name: Install requirements | |
| run: | | |
| pip install -r requirements.txt | |
| working-directory: ${{ env.galaxy-name }} | |
| - name: Create role requirements | |
| run: make ansible-role-requirements.yml | |
| working-directory: ${{ env.galaxy-name }} | |
| # See https://github.com/geerlingguy/raspberry-pi-dramble/issues/166 | |
| - name: Force GitHub Actions' docker daemon to use vfs. | |
| run: | | |
| sudo apt install -y jq | |
| sudo systemctl stop docker | |
| echo '{ "exec-opts": ["native.cgroupdriver=cgroupfs"], "cgroup-parent": "/actions_job", "storage-driver":"vfs"}' | sudo tee /etc/docker/daemon.json | |
| sudo systemctl start docker | |
| - name: Run molecule | |
| run: molecule test | |
| working-directory: ${{ env.galaxy-name }} | |
| env: | |
| MOLECULE_DISTRO: ${{ matrix.distro }} | |
| release: | |
| name: Publish to ansible-galaxy | |
| if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') | |
| needs: [pre-commit, molecule] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: robertdebock/[email protected] | |
| with: | |
| galaxy_api_key: ${{ secrets.GALAXY_API_KEY }} |