summary refs log tree commit diff
path: root/pkgs/development/tools/continuous-integration
diff options
context:
space:
mode:
authorYaya <mak@nyantec.com>2022-03-02 12:32:55 +0100
committerGitHub <noreply@github.com>2022-03-02 12:32:55 +0100
commitb2897c202b9a84000fcf29b7931c41a21a5797ef (patch)
tree86d5e75765d904bb0a21062b8f7771d4b7585c5e /pkgs/development/tools/continuous-integration
parentebbb0436e8e021b476227787d9a31880b4f595b6 (diff)
downloadnixpkgs-b2897c202b9a84000fcf29b7931c41a21a5797ef.tar
nixpkgs-b2897c202b9a84000fcf29b7931c41a21a5797ef.tar.gz
nixpkgs-b2897c202b9a84000fcf29b7931c41a21a5797ef.tar.bz2
nixpkgs-b2897c202b9a84000fcf29b7931c41a21a5797ef.tar.lz
nixpkgs-b2897c202b9a84000fcf29b7931c41a21a5797ef.tar.xz
nixpkgs-b2897c202b9a84000fcf29b7931c41a21a5797ef.tar.zst
nixpkgs-b2897c202b9a84000fcf29b7931c41a21a5797ef.zip
gitlab-runner: 14.8.0 -> 14.8.2 (#162416)
Diffstat (limited to 'pkgs/development/tools/continuous-integration')
-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 9c57c500592..6dc0a7d30ee 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 = "14.8.0";
+  version = "14.8.2";
 in
 buildGoModule rec {
   inherit version;
@@ -14,13 +14,13 @@ buildGoModule rec {
     "-X ${commonPackagePath}.REVISION=v${version}"
   ];
 
-  vendorSha256 = "sha256-MdGLl77DFXPudt26qICSH+1UuQAR8Rb/nl0Ykb0hjgE=";
+  vendorSha256 = "1aa04hbavr0bclddp5adjwwj21sp46gbhjydxc3w7vs1siw0ivq2";
 
   src = fetchFromGitLab {
     owner = "gitlab-org";
     repo = "gitlab-runner";
     rev = "v${version}";
-    sha256 = "sha256-+DwOKlFu9m2kt4DwaSp/Jq3eZ/+FFxV1Q7bKOy5DfoE=";
+    sha256 = "1zwr09lrrc3xx3sp00vs30ks0n77d7v0xkz0mz9jy2qdls9nfmrv";
   };
 
   patches = [