🚨: yamllint conformity

This commit is contained in:
VC
2024-07-05 11:53:53 +02:00
parent 8ee9a0f8ef
commit 192bf6dfcd
48 changed files with 103 additions and 95 deletions

View File

@@ -4,7 +4,7 @@
ansible.builtin.get_url:
url: "{{ yarn_key_url }}"
dest: /tmp/yarn.gpg.key
mode: 0644
mode: "0o644"
force: true
- name: Dearmor gpg key
@@ -16,7 +16,7 @@
ansible.builtin.copy:
content: "deb [signed-by={{ yarn_key_path }}] https://dl.yarnpkg.com/debian stable main"
dest: /etc/apt/sources.list.d/yarn.list
mode: 0644
mode: "0o644"
- name: Install yarn
ansible.builtin.apt: