Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "drop prober window from 15 to 7 days" #191

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/reusable-prober.yml
Expand Up @@ -158,9 +158,9 @@ jobs:
verify repository --repository ${{ inputs.tuf_repo }} --root ${ROOT_PATH} --valid-until ${EXPIRY}
echo "::endgroup::"

echo "::group::tuf-repo-cdn 7 day check"
export EXPIRY=$(date -d '+7 days' '+%s')
echo "Verifying root valid within 7 days..."
echo "::group::tuf-repo-cdn 15 day check"
export EXPIRY=$(date -d '+15 days' '+%s')
echo "Verifying root valid within 15 days..."
verify repository --repository ${{ inputs.tuf_repo }} --root ${ROOT_PATH} --valid-until ${EXPIRY} --role root.json --role targets.json
echo "::endgroup::"

Expand All @@ -170,9 +170,9 @@ jobs:
verify repository --repository ${{ inputs.tuf_preprod_repo }} --root ${ROOT_PATH} --valid-until ${EXPIRY}
echo "::endgroup::"

echo "::group::tuf-preprod-repo-cdn 7 day check"
export EXPIRY=$(date -d '+7 days' '+%s')
echo "Verifying root valid within 7 days..."
echo "::group::tuf-preprod-repo-cdn 15 day check"
export EXPIRY=$(date -d '+15 days' '+%s')
echo "Verifying root valid within 15 days..."
verify repository --repository ${{ inputs.tuf_preprod_repo }} --root ${ROOT_PATH} --valid-until ${EXPIRY} --role root.json --role targets.json
echo "::endgroup::"

Expand Down