gitea-actions-runner: 1.0.3 -> 2.1.0 (#544221)

This commit is contained in:
Donovan Glover
2026-07-23 02:23:19 +00:00
committed by GitHub
@@ -4,21 +4,22 @@
buildGoModule,
testers,
gitea-actions-runner,
nix-update-script,
}:
buildGoModule (finalAttrs: {
pname = "gitea-actions-runner";
version = "1.0.3";
version = "2.1.0";
src = fetchFromGitea {
domain = "gitea.com";
owner = "gitea";
repo = "runner";
rev = "v${finalAttrs.version}";
hash = "sha256-p6NdkQiZiEeuQjJp3CKTayStZlyk3d1XGigSI5uuLp0=";
hash = "sha256-jkK61OZgbMDHD5yxrpyP1BWCVzDiR79dVaC5ItS99BU=";
};
vendorHash = "sha256-T1T5ZpGqGmipIkTWlYxlsLdAthW8bhcAvr0xyZ74+wQ=";
vendorHash = "sha256-5K0vL0CDYgL/Ud7i4um3mz887Er4qmuhCd9dt5zyUHA=";
# Tests require network access (artifactcache tests try to determine outbound IP)
doCheck = false;
@@ -33,9 +34,12 @@ buildGoModule (finalAttrs: {
mv "$out/bin/runner" "$out/bin/gitea-runner"
'';
passthru.tests.version = testers.testVersion {
package = gitea-actions-runner;
version = "v${finalAttrs.version}";
passthru = {
tests.version = testers.testVersion {
package = gitea-actions-runner;
version = "v${finalAttrs.version}";
};
updateScript = nix-update-script { };
};
meta = {