CI: include has finally been removed in ansible-core devel (#6535)

include: → include_tasks:.
This commit is contained in:
Felix Fontein 2023-05-19 20:25:04 +02:00 committed by GitHub
commit ddca52ee15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 29 additions and 29 deletions

View file

@ -9,7 +9,7 @@
# SPDX-License-Identifier: GPL-3.0-or-later
- name: Setup
include: setup.yml
include_tasks: setup.yml
- name: Check availability of xattr support
command: setfattr -n user.foo {{ test_file }}
@ -17,5 +17,5 @@
register: xattr
- name: Test
include: test.yml
include_tasks: test.yml
when: xattr is not failed