From 1471cbe41eb2a1dfd4034ba56d67f7c503259f71 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Jul 2025 15:18:53 +0000 Subject: [PATCH 1/2] chore(deps): update dependency ansible-core to v2.19.0 Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index d7c974a3..4ca413e5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ molecule==25.1.0 molecule-plugins[docker]==23.7.0 -ansible-core==2.18.6 +ansible-core==2.19.0 docker==7.1.0 jmespath==1.0.1 aar-doc==2.2.0 From 95451064bfaf58e4ffc526b57b6ab80d203254e0 Mon Sep 17 00:00:00 2001 From: Martin Schurz Date: Fri, 25 Jul 2025 08:51:45 +0200 Subject: [PATCH 2/2] Fix assert in prereq Signed-off-by: Martin Schurz --- molecule/shared/prerequisites.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/molecule/shared/prerequisites.yml b/molecule/shared/prerequisites.yml index bd6292b8..89fac4a8 100644 --- a/molecule/shared/prerequisites.yml +++ b/molecule/shared/prerequisites.yml @@ -5,5 +5,5 @@ - name: Make sure environment variable for MOLECULE_DISTRO is set ansible.builtin.assert: that: - - "lookup('env','MOLECULE_DISTRO')" + - "lookup('env','MOLECULE_DISTRO') | length > 0" fail_msg: "You need to set MOLECULE_DISTRO to a supported image name. See CONTRIBUTING.md"