Nix: 2.24.6 -> 2.24.7

This version fixes GC bugs, which can be triggered under memory
pressure. Since GitHub runners are at times memory constraint,
it would be good to get this out.
This commit is contained in:
Jörg Thalheim 2024-09-25 08:50:50 +02:00
parent 3715ab1a11
commit 4f91dc2b65

View file

@ -93,7 +93,7 @@ echo "installer options: ${installer_options[*]}"
# There is --retry-on-errors, but only newer curl versions support that # There is --retry-on-errors, but only newer curl versions support that
curl_retries=5 curl_retries=5
while ! curl -sS -o "$workdir/install" -v --fail -L "${INPUT_INSTALL_URL:-https://releases.nixos.org/nix/nix-2.24.6/install}" while ! curl -sS -o "$workdir/install" -v --fail -L "${INPUT_INSTALL_URL:-https://releases.nixos.org/nix/nix-2.24.7/install}"
do do
sleep 1 sleep 1
((curl_retries--)) ((curl_retries--))