Skip to content

Commit 6373a3d

Browse files
author
Markus Koch
committed
update collection versions
1 parent 097f9be commit 6373a3d

3 files changed

Lines changed: 11 additions & 13 deletions

File tree

check_collection_versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ fi
1111

1212
# Extract collection names from requirements.yml and process each one
1313
grep -E "^\s*-\s*name:\s*" requirements.yml | sed 's/.*name:\s*//' | while read -r collection; do
14-
ansible-galaxy collection list "$collection" 2>/dev/null | grep -E "^$collection\s+" | head -n 1 || echo "$collection: Not installed or not found"
14+
ansible-galaxy collection list "$collection" 2>/dev/null | grep -E "^$collection\s+" | sort -n | tail -n 1|| echo "$collection: Not installed or not found"
1515
done

execution-environment-stable.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,29 +21,29 @@ dependencies:
2121
- name: awx.awx
2222
version: 24.6.1
2323
- name: azure.azcollection
24-
version: 3.6.0
24+
version: 3.15.0
2525
- name: google.cloud
26-
version: 1.6.0
26+
version: 1.12.0
2727
- name: amazon.aws
28-
version: 10.1.0
28+
version: 11.1.0
2929
- name: community.aws
30-
version: 10.0.0
30+
version: 11.0.0
3131
- name: vmware.vmware_rest
32-
version: 4.8.1
32+
version: 4.10.0
3333
- name: community.vmware
34-
version: 5.7.1
34+
version: 6.2.0
3535
- name: openstack.cloud
36-
version: 1.8.0 # 2.4.1
36+
version: 2.5.0
3737
- name: ibm.power_hmc
3838
version: 1.14.0
3939
- name: kubernetes.core
4040
version: 6.3.0
4141
- name: kubevirt.core
4242
version: 2.2.3
4343
- name: ovirt.ovirt
44-
version: 3.2.1
44+
version: 3.2.2
4545
- name: fedora.linux_system_roles
46-
version: 1.120.5
46+
version: 1.121.0
4747
- name: ansible.posix
4848
version: 2.1.0
4949
- name: ansible.utils

execution-environment.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ dependencies:
2626
- name: community.aws
2727
- name: vmware.vmware_rest
2828
- name: community.vmware
29-
#version: 3.9.0
3029
- name: openstack.cloud
31-
#version: 1.8.0
3230
- name: kubernetes.core
3331
- name: kubevirt.core
3432
- name: ovirt.ovirt
@@ -82,7 +80,7 @@ options:
8280

8381
additional_build_steps:
8482
#prepend_builder:
85-
# - RUN ln -s /usr/bin/gcc /usr/bin/cc
83+
# - RUN ln -s /usr/bin/gcc /usr/bin/cc
8684
prepend_base:
8785
- RUN dnf update -y
8886
append_base:

0 commit comments

Comments
 (0)