summary refs log tree commit diff
diff options
context:
space:
mode:
authorMax Wittig <max.wittig@siemens.com>2022-07-20 22:14:52 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2022-07-26 05:06:43 +0200
commit0672e6797feebf553804a037c059ed7036b7421b (patch)
treebcab3e33e6e181a784c01ed19ca16925bbcb1932
parent919b82bacf59feb8dee2016b2353bacfde285eee (diff)
downloadnixpkgs-0672e6797feebf553804a037c059ed7036b7421b.tar
nixpkgs-0672e6797feebf553804a037c059ed7036b7421b.tar.gz
nixpkgs-0672e6797feebf553804a037c059ed7036b7421b.tar.bz2
nixpkgs-0672e6797feebf553804a037c059ed7036b7421b.tar.lz
nixpkgs-0672e6797feebf553804a037c059ed7036b7421b.tar.xz
nixpkgs-0672e6797feebf553804a037c059ed7036b7421b.tar.zst
nixpkgs-0672e6797feebf553804a037c059ed7036b7421b.zip
gitlab-runner: 15.1.0 -> 15.2.0
-rw-r--r--pkgs/development/tools/continuous-integration/gitlab-runner/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
index d5e4edb2abf..e70d9b6347e 100644
--- a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
+++ b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
@@ -1,7 +1,7 @@
 { lib, buildGoModule, fetchFromGitLab, fetchurl }:
 
 let
-  version = "15.1.0";
+  version = "15.2.0";
 in
 buildGoModule rec {
   inherit version;
@@ -14,13 +14,13 @@ buildGoModule rec {
     "-X ${commonPackagePath}.REVISION=v${version}"
   ];
 
-  vendorSha256 = "sha256-5MzhDBCsgcACzImnfvetr3Z6SO+fHozChIhvZG0JwBc=";
+  vendorSha256 = "sha256-0lp4Hd6j7G59clWxLfz8GfQEmpXmhuGzmgX2ws/VJeQ=";
 
   src = fetchFromGitLab {
     owner = "gitlab-org";
     repo = "gitlab-runner";
     rev = "v${version}";
-    sha256 = "sha256-G6V0l9kzbpl9XEYiiVBYjY7xOHemtOrb1xyB1HjhhTc=";
+    sha256 = "sha256-1OflKz8AV8vSCkNBWGteIbXqbueAYNeAdp9nL3lgD8A=";
   };
 
   patches = [