Release
• 1 minute read

GitHub CLI extension to manage Actions cache

Summary

You can now manage Actions cache from your terminal by installing the new GitHub CLI extension for Actions cache: gh extension install actions/gh-actions-cache This extension is built on top of…

You can now manage Actions cache from your terminal by installing the new GitHub CLI extension for Actions cache:

    gh extension install actions/gh-actions-cache 

This extension is built on top of GitHub APIs for cache management and enables you to get:

  • More transparency by listing all the active caches in a repository and sorting by metadata like cache size, creation time or last accessed time.
  • Better control over cache usage by deleting a corrupt or a stale cache entry

Learn more about dependency caching to speed up your Actions workflows.

Back to top