diff --git a/geant/ops_ansible/roles/cic_generic/tasks/main.yml b/geant/ops_ansible/roles/cic_generic/tasks/main.yml
index 746776e9591aaeb74698e3b9200e78ed7670455f..7c26c1ef0d61ebb4b00924c44a3e2a6121c6fc43 100644
--- a/geant/ops_ansible/roles/cic_generic/tasks/main.yml
+++ b/geant/ops_ansible/roles/cic_generic/tasks/main.yml
@@ -9,7 +9,7 @@
   when: ((verb is not defined) or (config_object is not defined)) or (verb not in verbs) or (config_object not in config_objects.keys())
 
 - name: Fail if arguments are not correct
-  meta: end_play
+  ansible.builtin.meta: end_play
   when: ((verb is not defined) or (config_object is not defined)) or (verb not in verbs) or (config_object not in config_objects.keys())
 
 - name: Set an ID for this run
@@ -46,13 +46,13 @@
     expected_type: 'list'
 
 - name: Include compiling the template
-  include_tasks: compile_template.yaml
+  ansible.builtin.include_tasks: compile_template.yaml
   when: (verb in verbs)
 
 - name: Include the test tasks if specified
-  include_tasks: test_template.yaml
+  ansible.builtin.include_tasks: test_template.yaml
   when: verb == "test"
 
 - name: Include the test tasks if specified
-  include_tasks: fix_template.yaml
+  ansible.builtin.include_tasks: fix_template.yaml
   when: verb == "fix"