From 2ec94625dd1007b3cedb3f0b7b175a138c649b63 Mon Sep 17 00:00:00 2001 From: Robert Speicher Date: Thu, 11 Mar 2021 12:33:25 -0600 Subject: [PATCH] Remove Workhorse from auto-deployed component versions It's now included directly in gitlab-rails and doesn't need its own handling. Note that this only affects auto-deploys. --- lib/release_tools/component_versions.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/release_tools/component_versions.rb b/lib/release_tools/component_versions.rb index 3afbd2602..19751e820 100644 --- a/lib/release_tools/component_versions.rb +++ b/lib/release_tools/component_versions.rb @@ -11,8 +11,7 @@ module ReleaseTools Project::Gitaly.version_file, Project::GitlabElasticsearchIndexer.version_file, Project::GitlabPages.version_file, - Project::GitlabShell.version_file, - Project::GitlabWorkhorse.version_file + Project::GitlabShell.version_file ].freeze def self.get_component(commit_id, file) -- GitLab