Unverified Commit 22eb3277 authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

act: 0.2.68 -> 0.2.70 (#356372)

parents 2b413270 5aea15ef
Loading
Loading
Loading
Loading
+10 −5
Original line number Diff line number Diff line
@@ -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,10 +31,14 @@ buildGoModule {
    "-X main.version=${version}"
  ];

  passthru.tests.version = testers.testVersion {
  passthru = {
    tests.version = testers.testVersion {
      package = act;
    };

    updateScript = nix-update-script { };
  };

  meta = {
    description = "Run your GitHub Actions locally";
    mainProgram = "act";