We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fcab3f commit 42e09faCopy full SHA for 42e09fa
.github/workflows/test-deployer.yml
@@ -134,13 +134,23 @@ jobs:
134
timeout: 60
135
become: yes
136
137
- - name: Update packages and refresh cache
138
- shell: |
139
- dnf upgrade --refresh -y
140
- dnf clean all
141
- dnf makecache
+ - name: Update all packages
+ ansible.builtin.dnf:
+ name: "*"
+ state: latest
+ update_cache: yes
142
+ become: yes
143
+
144
+ - name: Clean DNF cache
145
146
+ autoremove: yes
147
+ clean: all
148
149
150
+ - name: Rebuild DNF cache
151
152
153
- changed_when: true
154
EOF
155
156
- name: Wait for EC2 instances to be ready
0 commit comments