act: 0.2.68 -> 0.2.70 (#356372)

This commit is contained in:
kirillrdy
2024-12-06 17:03:50 +11:00
committed by GitHub
+10 -5
View File
@@ -3,11 +3,12 @@
fetchFromGitHub,
buildGoModule,
testers,
nix-update-script,
act,
}:
let
version = "0.2.68";
version = "0.2.70";
in
buildGoModule {
pname = "act";
@@ -17,10 +18,10 @@ buildGoModule {
owner = "nektos";
repo = "act";
rev = "refs/tags/v${version}";
hash = "sha256-BON29uUruBoeBLoBdOgnonrVIyLZlvBW5UyWfxFgjPs=";
hash = "sha256-7e2ehUM3d5hcFtaahW/hrhVkpy74ufMdYwdnbsUA+WM=";
};
vendorHash = "sha256-yxuOORShJL9nFIS5srZFI31Nyz7xFxnJCmcN8UFhyr0=";
vendorHash = "sha256-2fHNiquFg6I0JefqXfXRrnXxKPkNQOtQB7fznldO3GE=";
doCheck = false;
@@ -30,8 +31,12 @@ buildGoModule {
"-X main.version=${version}"
];
passthru.tests.version = testers.testVersion {
package = act;
passthru = {
tests.version = testers.testVersion {
package = act;
};
updateScript = nix-update-script { };
};
meta = {