about summary refs log tree commit diff
path: root/pkgs/development/tools/apko/default.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-05-18 00:02:17 +0000
committerGitHub <noreply@github.com>2024-05-18 00:02:17 +0000
commit11e181f00d09a94a931793acc0208c2103c8427a (patch)
tree441a1e95b90d96b04822122690d43a9947f8e960 /pkgs/development/tools/apko/default.nix
parentc537cc4af4c297b69441ae95e8f96a00fbcead59 (diff)
parent8a33016960fc556929f10df9efae7fb372877441 (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/development/tools/apko/default.nix')
-rw-r--r--pkgs/development/tools/apko/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/apko/default.nix b/pkgs/development/tools/apko/default.nix
index 34cf2c2e3a154..879d88cf0a920 100644
--- a/pkgs/development/tools/apko/default.nix
+++ b/pkgs/development/tools/apko/default.nix
@@ -6,13 +6,13 @@
 
 buildGoModule rec {
   pname = "apko";
-  version = "0.14.0";
+  version = "0.14.1";
 
   src = fetchFromGitHub {
     owner = "chainguard-dev";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-e9xWLDs0txl+eiqim3gj7vJRGOFY6MrqOAa1l0TaTbs=";
+    hash = "sha256-O1lU3b3dNmFcV0Dfkpw63Eu6AgLSLBi7MbF47OsjgL4=";
     # populate values that require us to use git. By doing this in postFetch we
     # can delete .git afterwards and maintain better reproducibility of the src.
     leaveDotGit = true;
@@ -24,7 +24,7 @@ buildGoModule rec {
       find "$out" -name .git -print0 | xargs -0 rm -rf
     '';
   };
-  vendorHash = "sha256-FeljCUtHTKni0yU7JwnaeKYJU7pM527drqBgaxWH/cI=";
+  vendorHash = "sha256-shnVJ6TcqWxUu1Ib2ewaz2VK4mi1Rt3R0Cmof9ilDJ4=";
 
   nativeBuildInputs = [ installShellFiles ];