gitea-actions-runner: 0.2.11 -> 0.2.12

Release notes: https://gitea.com/gitea/act_runner/releases/tag/v0.2.12
This commit is contained in:
Igor Svistoun 2025-07-06 20:03:32 -04:00
parent f7baaedc9e
commit d48f3a2948
No known key found for this signature in database

View File

@ -1,42 +1,42 @@
{
lib,
fetchFromGitea,
buildGo123Module,
buildGoModule,
testers,
gitea-actions-runner,
}:
buildGo123Module rec {
buildGoModule (finalAttrs: {
pname = "gitea-actions-runner";
version = "0.2.11";
version = "0.2.12";
src = fetchFromGitea {
domain = "gitea.com";
owner = "gitea";
repo = "act_runner";
rev = "v${version}";
hash = "sha256-PmDa8XIe1uZ4SSrs9zh5HBmFaOuj+uuLm7jJ4O5V1dI=";
rev = "v${finalAttrs.version}";
hash = "sha256-z/wEs110Y2IZ2Jm6bayxlD2sjyl2V/v+gP6l9pwGi5o=";
};
vendorHash = "sha256-lYJFySGqkhT89vHDp1FcTiiC7DG4ziQ1DaBHLh/kXQc=";
vendorHash = "sha256-HuiL6OLShSeGtHb4dOeOFOpOgl55s3x18uYgM4X8G7M=";
ldflags = [
"-s"
"-w"
"-X gitea.com/gitea/act_runner/internal/pkg/ver.version=v${version}"
"-X gitea.com/gitea/act_runner/internal/pkg/ver.version=v${finalAttrs.version}"
];
passthru.tests.version = testers.testVersion {
package = gitea-actions-runner;
version = "v${version}";
version = "v${finalAttrs.version}";
};
meta = {
mainProgram = "act_runner";
maintainers = with lib.maintainers; [ techknowlogick ];
license = lib.licenses.mit;
changelog = "https://gitea.com/gitea/act_runner/releases/tag/v${version}";
changelog = "https://gitea.com/gitea/act_runner/releases/tag/v${finalAttrs.version}";
homepage = "https://gitea.com/gitea/act_runner";
description = "Runner for Gitea based on act";
};
}
})