Skip to content

chore(deps): update ansible requirement from ~=10.4.0 to ~=10.5.0 #403

chore(deps): update ansible requirement from ~=10.4.0 to ~=10.5.0

chore(deps): update ansible requirement from ~=10.4.0 to ~=10.5.0 #403

Workflow file for this run

name: CI
on:
push:
pull_request:
env:
galaxy-name: "dokku_bot.ansible_dokku"
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: pre-commit/action@v3.0.1
readme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- 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:
# Remove debian10 until dependency gets re-added.
# https://github.com/dokku/docker-container-healthchecker/issues/129
distro: [ubuntu2004, ubuntu2204, debian11, debian12]
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
path: ${{ env.galaxy-name }}
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- 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@v4
- uses: robertdebock/galaxy-action@1.2.1
with:
galaxy_api_key: ${{ secrets.GALAXY_API_KEY }}