Fixing ansible-lint errors
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2026-09-15 21:39:47 -04:00
parent 2438978296
commit 7a43c728a3
7 changed files with 31 additions and 33 deletions
+5 -5
View File
@@ -11,22 +11,22 @@
tasks:
- name: Update apt cache (Debian)
ansible.builtin.apt:
update_cache: yes
update_cache: true
cache_valid_time: 3600
when: ansible_os_family == "Debian"
- name: Upgrade all packages (Debian)
ansible.builtin.apt:
upgrade: dist
autoremove: yes
autoclean: yes
autoremove: true
autoclean: true
when: ansible_os_family == "Debian"
- name: Upgrade all packages (RedHat)
- name: Upgrade all packages (RedHat) # noqa: package-latest
ansible.builtin.dnf:
name: "*"
state: latest
update_cache: yes
update_cache: true
when: ansible_os_family == "RedHat"
- name: Check if reboot is required (Debian)