Debug-action-cache: __full__

- name: List Repository Caches env: GH_TOKEN: $ secrets.GITHUB_TOKEN run: | gh cache list --limit 50

to ensure your CDN or proxy isn't serving old content before the action even runs. Artifact vs. Cache: Remember that are for speeding up future runs (dependencies), while are for saving build outputs (binaries/logs) from the debug-action-cache

The most powerful debug-action-cache technique is to store a .checksum file inside the cache. - name: List Repository Caches env: GH_TOKEN: $ secrets