Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ def test_json_receipt_is_retained_as_an_immutable_short_lived_artifact() -> None
assert "if-no-files-found: error" in source
assert "retention-days: 3" in source
endpoints = _harden_runner_allowed_endpoints(source)
assert "results-receiver.actions.githubusercontent.com:443" in endpoints
assert "*.actions.githubusercontent.com:443" in endpoints
assert "*.blob.core.windows.net:443" in endpoints
assert {
"results-receiver.actions.githubusercontent.com:443",
"*.actions.githubusercontent.com:443",
"*.blob.core.windows.net:443",
}.issubset(endpoints)
assert "- name: Checkout exact trusted coordinator source" not in endpoints
Loading