always update cache
Infrastructure / Check and run Ansbile playbooks (pull_request) Failing after 6m13s Details

This commit is contained in:
Gleb Koval 2023-09-25 21:57:43 +01:00
parent 0a479039e2
commit f75abf978a
Signed by: cyclane
GPG Key ID: 15E168A8B332382C
2 changed files with 3 additions and 1 deletions

View File

@ -7,6 +7,7 @@
timeout: 300
- name: Install system packages
ansible.builtin.apt:
update_cache: true
package: qemu-guest-agent
state: latest
become: true

View File

@ -7,6 +7,7 @@
timeout: 300
- name: Install dependencies
ansible.builtin.apt:
update_cache: true
package:
- curl
- python3-apt
@ -19,11 +20,11 @@
become: true
- name: Add docker repo
ansible.builtin.apt_repository:
update_cache: true
repo: deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian bookworm stable
become: true
- name: Install docker
ansible.builtin.apt:
update_cache: true
pacakge:
- docker-ce
- docker-ce-cli