Open jku opened 2 months ago
Issue came up in https://github.com/sigstore/root-signing-staging/issues/179
There is a few ways to fix this:
test_future_validity
) and ensure that this somehow works in cron jobs
I think the last one is reasonable:
but means complicated input args in root-signing:
# when workflow is reused in publish.yml, do not require future validity
valid_days: ${{ github.event_name == 'workflow_call' && 0 || 3 }}
It's really ugly but maybe acceptable..
We use
test.yml
workflow in multiple ways:The issue is that both cases use the same input values for the test action, in particular:
for the publish case we probably should use 0 for both cases