From 45431f231057343250c329ba4fc813c6d4b4051d Mon Sep 17 00:00:00 2001 From: Chris Coley <chris@codingallnight.com> Date: Tue, 22 Apr 2025 23:53:50 -0700 Subject: [PATCH] Fix floating point truncation in CI YAML config --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 319c760..4d63411 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -51,7 +51,7 @@ build:2.10: extends: .build variables: ALPINE_VERSION: 3.14 - ANSIBLE_VERSION: 2.10 + ANSIBLE_VERSION: '2.10' BUILD_TARGET: ansible-classic build:2.9: @@ -89,7 +89,7 @@ test:2.10: extends: .test needs: ['build:2.10'] variables: - ANSIBLE_VERSION: 2.10 + ANSIBLE_VERSION: '2.10' test:2.9: extends: .test -- GitLab