Skip to content

Commit 941d2ec

Browse files
committed
Ensure all metadata fields have string values
Make sure that any numeric type values are being interpreted as strings. This ensures the metadata follows the schema for Ansible role metadata.
1 parent 073e628 commit 941d2ec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

meta/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ galaxy_info:
1111
# OS family. This simplifies a lot of things for roles that support
1212
# Kali Linux, so it makes sense to force the installation of Ansible
1313
# 2.10 or newer.
14-
min_ansible_version: 2.10
14+
min_ansible_version: "2.10"
1515
namespace: cisagov
1616
platforms:
1717
- name: Amazon
1818
versions:
19-
- 2
19+
- "2"
2020
- name: Debian
2121
versions:
2222
- stretch
@@ -28,8 +28,8 @@ galaxy_info:
2828
- bookworm
2929
- name: Fedora
3030
versions:
31-
- 34
32-
- 35
31+
- "34"
32+
- "35"
3333
- name: Ubuntu
3434
versions:
3535
- bionic

0 commit comments

Comments
 (0)