diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 8db845b..83cd876 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -9,30 +9,25 @@ on: jobs: syntax-check: runs-on: ubuntu-latest - container: - image: python:3.12-slim steps: - uses: actions/checkout@v4 - name: Install ansible - run: pip install ansible --quiet + run: pip3 install ansible --quiet --break-system-packages - name: Syntax check run: ansible-playbook playbooks/deploy.yml --syntax-check -i inventory/ deploy: needs: syntax-check - if: ${{ github.ref == 'refs/heads/master' && github.event_name == 'push' }} + if: github.ref == 'refs/heads/master' && github.event_name == 'push' runs-on: ubuntu-latest - container: - image: python:3.12-slim steps: - uses: actions/checkout@v4 - name: Install dependencies run: | - apt-get update -qq && apt-get install -y openssh-client --no-install-recommends - pip install ansible --quiet + pip3 install ansible --quiet --break-system-packages ansible-galaxy collection install ansible.posix community.general community.docker --quiet - name: Configure SSH diff --git a/roles/services/templates/act_runner_config.yaml.j2 b/roles/services/templates/act_runner_config.yaml.j2 index bc929c4..28c97b9 100644 --- a/roles/services/templates/act_runner_config.yaml.j2 +++ b/roles/services/templates/act_runner_config.yaml.j2 @@ -1,6 +1,6 @@ # Generated by Ansible — do not edit manually log: - level: info + level: debug runner: capacity: 2