From f93883aa204ac57e4e39ad09d644d02f17b35096 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Mik=C3=A1cz=C3=B3?= Date: Tue, 17 Sep 2024 14:53:55 +0200 Subject: [PATCH] gitlab_runner: update requirements in docs (#8860) * Update gitlab_runner.py Be specific related requirements for package version. This difference change the whole dependency chain for playbook. * Update plugins/modules/gitlab_runner.py Co-authored-by: Felix Fontein --------- Co-authored-by: Felix Fontein --- plugins/modules/gitlab_runner.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/modules/gitlab_runner.py b/plugins/modules/gitlab_runner.py index b11e029103..a285c4030a 100644 --- a/plugins/modules/gitlab_runner.py +++ b/plugins/modules/gitlab_runner.py @@ -33,7 +33,10 @@ 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 - U(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 - U(https://docs.gitlab.com/runner/register/#register-with-a-runner-authentication-token)) extends_documentation_fragment: - community.general.auth_basic - community.general.gitlab