gh-cache-list - List Github Actions caches
gh cache list [flags]
-q, --jq <expression>
Filter JSON output using a jq expression
--json <fields>
Output JSON with the specified fields
-L, --limit <int>
Maximum number of caches to fetch
-O, --order <string>
Order of caches returned: {asc|desc}
-S, --sort <string>
Sort fetched caches: {created_at|last_accessed_at|size_in_bytes}
-t, --template <string>
Format JSON output using a Go template; see "gh help formatting"
-R, --repo <[HOST/]OWNER/REPO>
Select another repository using the [HOST/]OWNER/REPO format
# List caches
for current repository
$ gh cache list
# List caches
for specific repository
$ gh cache list --repo cli/cli
# List caches
sorted by least recently accessed
$ gh cache list --sort last_accessed_at --order asc
gh-cache(1)