From 6766db42847c4fee897f5bad384cac700edd86b3 Mon Sep 17 00:00:00 2001 From: 06kellyjac Date: Mon, 7 Jul 2025 10:20:14 +0100 Subject: [PATCH] apko: 0.29.1 -> 0.29.2 Diff: https://github.com/chainguard-dev/apko/compare/refs/tags/v0.29.1...refs/tags/v0.29.2 Changelog: https://github.com/chainguard-dev/apko/releases/tag/v0.29.2 --- pkgs/by-name/ap/apko/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ap/apko/package.nix b/pkgs/by-name/ap/apko/package.nix index aaecbb65fdf5..ada9a015e6c2 100644 --- a/pkgs/by-name/ap/apko/package.nix +++ b/pkgs/by-name/ap/apko/package.nix @@ -11,13 +11,13 @@ buildGoModule (finalAttrs: { pname = "apko"; - version = "0.29.1"; + version = "0.29.2"; src = fetchFromGitHub { owner = "chainguard-dev"; repo = "apko"; tag = "v${finalAttrs.version}"; - hash = "sha256-PRT29c7WqjkWR4hqzzz8ek5IytsS3ntDlPQ/tzpARCk="; + hash = "sha256-szUOl5nKrra7Vvyfcd60/Oy/QFiXZpGJR2gtw3lriKE="; # 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; @@ -29,7 +29,7 @@ buildGoModule (finalAttrs: { find "$out" -name .git -print0 | xargs -0 rm -rf ''; }; - vendorHash = "sha256-j7f9cbcbX4PdaRxg5lare6aRz1B5lCfj2RSvs+XOfe4="; + vendorHash = "sha256-gN8lAmLJmoGQA0l62d4EPx2w2SbhUwbNYhIcyAamaqU="; nativeBuildInputs = [ installShellFiles ];