From 107e6eba3c75d7a90b800b8808d718109713d5cd Mon Sep 17 00:00:00 2001 From: ver4a Date: Thu, 8 Jan 2026 21:56:10 +0100 Subject: [PATCH] fix: add back nodejs24 (action dependency) This package was also required for the checkout action and I erroneously removed it in 3c6d8f587d3e22bff670bace2617e96ad348dee7. Previous version was nodejs22, that was only because of unmaintained actions, current actions are maintained so nodejs24 is used. --- oci-builder/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oci-builder/Containerfile b/oci-builder/Containerfile index 049ca17..4546ebb 100644 --- a/oci-builder/Containerfile +++ b/oci-builder/Containerfile @@ -4,7 +4,7 @@ ENV BUILDAH_ISOLATION=chroot ENV HOME=/builder ENV REGISTRY_AUTH_FILE=/builder/.config/containers/auth.json -RUN dnf5 -y --setopt install_weak_deps=false install podman buildah skopeo setpriv git-core diffutils gawk +RUN dnf5 -y --setopt install_weak_deps=false install podman buildah skopeo setpriv git-core nodejs24 diffutils gawk RUN echo "nobody:65536:65536" > /etc/subuid && echo "nobody:65536:65536" > /etc/subgid