Problem
apify create fetches the template manifest from raw.githubusercontent.com, but every template's archiveUrl in that manifest points to github.com, e.g. https://github.com/apify/actor-templates/blob/master/dist/templates/python-crawlee-beautifulsoup.zip?raw=true. In sandboxed environments whose egress policy allows raw.githubusercontent.com but blocks github.com, the template list loads and the download then fails.
Expected
Template archives come from the same host as the manifest, so apify create works anywhere the manifest is reachable.
Fix
Point archiveUrl at the raw host instead: https://raw.githubusercontent.com/apify/actor-templates/master/dist/templates/<id>.zip. That URL already serves the same archives. The manifest is generated in apify/actor-templates, so the change lands there.
Links
Manifest: https://raw.githubusercontent.com/apify/actor-templates/master/templates/manifest.json
Problem
apify createfetches the template manifest fromraw.githubusercontent.com, but every template'sarchiveUrlin that manifest points togithub.com, e.g.https://github.com/apify/actor-templates/blob/master/dist/templates/python-crawlee-beautifulsoup.zip?raw=true. In sandboxed environments whose egress policy allowsraw.githubusercontent.combut blocksgithub.com, the template list loads and the download then fails.Expected
Template archives come from the same host as the manifest, so
apify createworks anywhere the manifest is reachable.Fix
Point
archiveUrlat the raw host instead:https://raw.githubusercontent.com/apify/actor-templates/master/dist/templates/<id>.zip. That URL already serves the same archives. The manifest is generated inapify/actor-templates, so the change lands there.Links
Manifest: https://raw.githubusercontent.com/apify/actor-templates/master/templates/manifest.json