gh-cache-delete - Delete Github Actions caches
gh cache delete [<cache-id>| <cache-key> | --all] [flags]
Delete Github Actions caches. | ||
Deletion requires authorization with the "repo" scope. |
-a, --all
Delete all caches
-R, --repo <[HOST/]OWNER/REPO>
Select another repository using the [HOST/]OWNER/REPO format
# Delete a cache
by id
$ gh cache delete 1234
# Delete a cache
by key
$ gh cache delete cache-key
# Delete a cache
by id in a specific repo
$ gh cache delete 1234 --repo cli/cli
# Delete all
caches
$ gh cache delete --all
gh-cache(1)