From 394e3ea0f473f1ab302b0236b54242c5bbfdfeba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Mik=C3=A1cz=C3=B3?= Date: Fri, 13 Sep 2024 10:24:13 +0200 Subject: [PATCH] Update gitlab_runner.py Be specific related requirements for package version. This difference change the whole dependency chain for playbook. --- plugins/modules/gitlab_runner.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/modules/gitlab_runner.py b/plugins/modules/gitlab_runner.py index b11e029103..7593356c03 100644 --- a/plugins/modules/gitlab_runner.py +++ b/plugins/modules/gitlab_runner.py @@ -33,7 +33,8 @@ author: - Samy Coenen (@SamyCoenen) - Guillaume Martinez (@Lunik) requirements: - - python-gitlab >= 1.5.0 + - python-gitlab >= 1.5.0 for legacy runner registration workflow (runner registration token - https://docs.gitlab.com/runner/register/#register-with-a-runner-registration-token-deprecated) + - python-gitlab >= 4.0.0 for new runner registration workflow (runner authentication token - https://docs.gitlab.com/runner/register/#register-with-a-runner-authentication-token) extends_documentation_fragment: - community.general.auth_basic - community.general.gitlab