gitlab-runner: 16.0.2 -> 16.1.0 (#239145)

https://gitlab.com/gitlab-org/gitlab-runner/-/blob/v16.1.0/CHANGELOG.md

authored by

Yaya and committed by
GitHub
ae510fac 7083d0be

+9 -3
+9 -3
pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
··· 1 1 { lib, buildGoModule, fetchFromGitLab, fetchurl, bash }: 2 2 3 3 let 4 - version = "16.0.2"; 4 + version = "16.1.0"; 5 5 in 6 6 buildGoModule rec { 7 7 inherit version; ··· 17 17 # For patchShebangs 18 18 buildInputs = [ bash ]; 19 19 20 - vendorHash = "sha256-BgT+anRMkF00LLi+7Em0pXElwBnPz3QTs0G5+yoEj/k="; 20 + vendorHash = "sha256-tlTmKq1a5hX8G0+7RC1QbWA7YVnoBS5R9QqXljJ4bVg="; 21 21 22 22 src = fetchFromGitLab { 23 23 owner = "gitlab-org"; 24 24 repo = "gitlab-runner"; 25 25 rev = "v${version}"; 26 - sha256 = "sha256-t1DI7AhxnnBoP5h54dUCKtJcIffxmv0c7OczVhEy3rI="; 26 + sha256 = "sha256-1obA2f/YtOBkgYLJqcHQWbaCezEw7lUXs4OxFiONCm8="; 27 27 }; 28 28 29 29 patches = [ ··· 48 48 rm helpers/docker/auth/auth_test.go 49 49 rm executors/docker/services_test.go 50 50 ''; 51 + 52 + excludedPackages = [ 53 + # CI helper script for pushing images to Docker and ECR registries 54 + # https://gitlab.com/gitlab-org/gitlab-runner/-/merge_requests/4139 55 + "./scripts/sync-docker-images" 56 + ]; 51 57 52 58 postInstall = '' 53 59 install packaging/root/usr/share/gitlab-runner/clear-docker-cache $out/bin