summary refs log tree commit diff
path: root/pkgs/development/tools/continuous-integration
diff options
context:
space:
mode:
authorMax Wittig <max.wittig@siemens.com>2020-07-20 13:13:05 +0200
committerGitHub <noreply@github.com>2020-07-20 11:13:05 +0000
commit64d855d214ff2bcf81be73852f0d13397e2c0082 (patch)
tree14e7e813c4f4e9b143da5a93025a0d06f9168a03 /pkgs/development/tools/continuous-integration
parentd0c12dc612bef680d129df40cbe7d80981a1e51c (diff)
downloadnixpkgs-64d855d214ff2bcf81be73852f0d13397e2c0082.tar
nixpkgs-64d855d214ff2bcf81be73852f0d13397e2c0082.tar.gz
nixpkgs-64d855d214ff2bcf81be73852f0d13397e2c0082.tar.bz2
nixpkgs-64d855d214ff2bcf81be73852f0d13397e2c0082.tar.lz
nixpkgs-64d855d214ff2bcf81be73852f0d13397e2c0082.tar.xz
nixpkgs-64d855d214ff2bcf81be73852f0d13397e2c0082.tar.zst
nixpkgs-64d855d214ff2bcf81be73852f0d13397e2c0082.zip
gitlab-runner: 13.1.0 -> 13.2.0 (#93514)
Diffstat (limited to 'pkgs/development/tools/continuous-integration')
-rw-r--r--pkgs/development/tools/continuous-integration/gitlab-runner/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
index c75d71f3a11..298e5e6f9ca 100644
--- a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
+++ b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
@@ -1,16 +1,16 @@
 { lib, buildGoPackage, fetchFromGitLab, fetchurl }:
 
 let
-  version = "13.1.0";
+  version = "13.2.0";
   # Gitlab runner embeds some docker images these are prebuilt for arm and x86_64
   docker_x86_64 = fetchurl {
     url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/helper-images/prebuilt-x86_64.tar.xz";
-    sha256 = "1x44vbfcmk95rjkhmfizfdmr1blyj7x1a84hdynrgcyg69m6zikn";
+    sha256 = "0cvcil96gww68abdj5ni7w69ss5ncz3ixh00k1a9nlqggf0ifaav";
   };
 
   docker_arm = fetchurl {
     url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/helper-images/prebuilt-arm.tar.xz";
-    sha256 = "08n3nrpwhb3d3znid2bibg54qxdw5z6r4j5fp8vjh33h45q47q0k";
+    sha256 = "1j2z1wk4qs089mvx7y14al28pzhhnzs17n1ijpahsln2jn7b2s5m";
   };
 in
 buildGoPackage rec {
@@ -30,7 +30,7 @@ buildGoPackage rec {
     owner = "gitlab-org";
     repo = "gitlab-runner";
     rev = "v${version}";
-    sha256 = "0mbcpz1i0jmx5y67cvjwaizbj6jxdqml5m4m42dx96jqk0bv8g55";
+    sha256 = "0bgrh1yckc879qq155dvdqsr7673g1r1hbwf489ngabj8f8l3l23";
   };
 
   patches = [ ./fix-shell-path.patch ];