⚠️ Migration (breaking change)
This action no longer accepts the previous JSON-style inputs (cdn-paths, eo-paths, eo-zoneid).
You must now provide targets using the multiline paths input. Each line contains one or more tokens separated by whitespace. Lines starting with a Zone ID (zone-...) are treated as EdgeOne zone entries; other tokens are treated as CDN paths.
Example migration:
Old (JSON inputs):
with:
cdn-paths: '["https://example.com/"]'
eo-zoneid: 'zone-XXXX'
eo-paths: '["https://example.com/"]'New (paths):
with:
paths: |
https://example.com/
zone-XXXX https://example.com/The new paths format is simpler and supports multiple EO zones in the same input.
Full Changelog: v1.5...v2