Merge pull request #262805 from yayayayaka/gitlab-runner-16.5.0

gitlab-runner: 16.4.0 -> 16.5.0
This commit is contained in:
Pascal Bach
2023-10-23 23:33:01 +02:00
committed by GitHub
2 changed files with 6 additions and 4 deletions
@@ -1,7 +1,7 @@
{ lib, buildGoModule, fetchFromGitLab, fetchurl, bash }:
let
version = "16.4.0";
version = "16.5.0";
in
buildGoModule rec {
inherit version;
@@ -17,13 +17,13 @@ buildGoModule rec {
# For patchShebangs
buildInputs = [ bash ];
vendorHash = "sha256-RIxGgS+7gNvexZLLtXymGZaODhax/oSi1gAUxXHZBp4=";
vendorHash = "sha256-C37ijxvyY9PG/Qn29Fmk0pxK+hq45kHIBveBltfIfTo=";
src = fetchFromGitLab {
owner = "gitlab-org";
repo = "gitlab-runner";
rev = "v${version}";
sha256 = "sha256-XYlrIUBT/zlnGYxckv36dqSEEpxUom/OJfqnL/HwYDo=";
sha256 = "sha256-NLidtwn1zT7BxzMEF5K41fwbZaICA/KuAr8MIjpJD+A=";
};
patches = [
+3 -1
View File
@@ -8565,7 +8565,9 @@ with pkgs;
gitlab-pages = callPackage ../applications/version-management/gitlab/gitlab-pages { };
gitlab-runner = callPackage ../development/tools/continuous-integration/gitlab-runner { };
gitlab-runner = callPackage ../development/tools/continuous-integration/gitlab-runner {
buildGoModule = buildGo120Module;
};
gitlab-shell = callPackage ../applications/version-management/gitlab/gitlab-shell { };