...turn on determinate.

This commit is contained in:
Graham Christensen 2025-05-15 12:06:12 -04:00
parent f409af1f29
commit 4b4609754c
2 changed files with 5 additions and 1 deletions

View file

@ -123,7 +123,8 @@
"diagnostic-endpoint": "${{ inputs.diagnostic-endpoint }}", "diagnostic-endpoint": "${{ inputs.diagnostic-endpoint }}",
"log-directives": "${{ inputs.log-directives }}", "log-directives": "${{ inputs.log-directives }}",
"logger": "${{ inputs.logger }}", "logger": "${{ inputs.logger }}",
"_internal-strict-mode": "${{ inputs._internal-strict-mode }}" "_internal-strict-mode": "${{ inputs._internal-strict-mode }}",
"determinate": true
} }
} }
] ]

View file

@ -163,6 +163,9 @@ for input_name in keep_inputs:
except KeyError: except KeyError:
faults.append(f"Input action is missing this 'keep_inputs' input: {input_name}") faults.append(f"Input action is missing this 'keep_inputs' input: {input_name}")
# Turn on Determinate Nix
nix_install_step["with"]["determinate"] = True
result["runs"]["steps"].append(nix_install_step) result["runs"]["steps"].append(nix_install_step)
# Delete inputs we specifically do not want to support without a specific and known use case # Delete inputs we specifically do not want to support without a specific and known use case