about summary refs log tree commit diff
path: root/pkgs/development/tools/continuous-integration
diff options
context:
space:
mode:
authorIlan Joselevich <personal@ilanjoselevich.com>2023-03-21 18:50:50 +0200
committerGitHub <noreply@github.com>2023-03-21 18:50:50 +0200
commita0d11112016459e8cf02163e842f2b4950f7a42b (patch)
tree56a1e54b451a2dd906b4e48925885789486aad82 /pkgs/development/tools/continuous-integration
parentece00a16c3751782abe381b8b7e003870b50e8b5 (diff)
parentdaf33aca55f06d5f8cab69b904ad36b4916c0416 (diff)
Merge pull request #222217 from LongerHV/act-runner
gitea-actions-runner: unstable-2023-02-08 -> unstable-2023-03-18
Diffstat (limited to 'pkgs/development/tools/continuous-integration')
-rw-r--r--pkgs/development/tools/continuous-integration/gitea-actions-runner/default.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/development/tools/continuous-integration/gitea-actions-runner/default.nix b/pkgs/development/tools/continuous-integration/gitea-actions-runner/default.nix
index cb5338e210b0b..95be9bdaa482d 100644
--- a/pkgs/development/tools/continuous-integration/gitea-actions-runner/default.nix
+++ b/pkgs/development/tools/continuous-integration/gitea-actions-runner/default.nix
@@ -2,17 +2,23 @@
 
 buildGoModule rec {
   pname = "gitea-actions-runner";
-  version = "unstable-2023-02-08";
+  version = "unstable-2023-03-18";
 
   src = fetchFromGitea {
     domain = "gitea.com";
     owner = "gitea";
     repo = "act_runner";
-    rev = "990cf93c7136669408eb1832cd05df3ad4dd81b3";
-    sha256 = "1ysp7g199dzh1zpxxhki88pn96qghln7a5g8zfjip9173q1rgiyb";
+    rev = "9eb8b08a69e8b1c699c9c07a06c1ff8e5f6ad0fe";
+    sha256 = "sha256-B8vD+86X8cqZhPmDmEjHgSsq3TdJuCf9h3XgdXC7hQY=";
   };
 
-  vendorSha256 = "0a3q7rsk37dc6v3vnqaywkimaqvyjmkrwljhcjcnswsdfcgng62b";
+  vendorSha256 = "sha256-K/d/ip8icc+rjTmajsGxw5aij1VMW6wJJu4LCkKqaVQ=";
+
+  ldflags = [
+    "-s"
+    "-w"
+    "-X gitea.com/gitea/act_runner/cmd.version=${version}"
+  ];
 
   meta = with lib; {
     mainProgram = "act_runner";