From 07840c41194b85d3821b50e2d833a9f686420284 Mon Sep 17 00:00:00 2001 From: Douglas J Hunley Date: Thu, 25 Sep 2025 14:02:36 -0400 Subject: [PATCH] refactor(ansible): bring our ansible up to modern ansible-lint standards --- ansible/tasks/clean-build-dependencies.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/tasks/clean-build-dependencies.yml b/ansible/tasks/clean-build-dependencies.yml index 43ec05179..567398f5f 100644 --- a/ansible/tasks/clean-build-dependencies.yml +++ b/ansible/tasks/clean-build-dependencies.yml @@ -1,5 +1,6 @@ - name: Remove build dependencies - apt: + ansible.builtin.apt: + autoremove: true pkg: - bison - build-essential @@ -17,5 +18,4 @@ - ninja-build - patch - python2 - state: absent - autoremove: yes + state: 'absent'