Scroll to navigation

GH-CACHE-DELETE(1) GitHub CLI manual GH-CACHE-DELETE(1)

NAME

gh-cache-delete - Delete Github Actions caches

SYNOPSIS

gh cache delete [<cache-id>| <cache-key> | --all] [flags]

DESCRIPTION

	Delete Github Actions caches.
	Deletion requires authorization with the "repo" scope.

OPTIONS

Delete all caches

OPTIONS INHERITED FROM PARENT COMMANDS

Select another repository using the [HOST/]OWNER/REPO format

EXAMPLE

# 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

SEE ALSO

gh-cache(1)

Dec 2023