From 9e1a8c8c9ed6ea31cea46842c1f082a9306d9c23 Mon Sep 17 00:00:00 2001 From: Jose Date: Thu, 12 Feb 2026 18:17:43 +0100 Subject: [PATCH] =?UTF-8?q?refactor=20=E2=99=BB=EF=B8=8F:=20Refactor=20tas?= =?UTF-8?q?k=20to=20use=20ansible.builtin.apt=20for=20compatibility?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This refactoring updates the task to use `ansible.builtin.apt` instead of the deprecated module, ensuring compatibility with newer versions of Ansible. --- tasks/utilities.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/utilities.yml b/tasks/utilities.yml index 226deae..28d3b48 100644 --- a/tasks/utilities.yml +++ b/tasks/utilities.yml @@ -1,6 +1,6 @@ --- - name: utilities | Install required system packages - apt: + ansible.builtin.apt: name: - python3 - python3-pip