Skip to content

Instantly share code, notes, and snippets.

@tkhk
Created November 1, 2022 15:07
Show Gist options
  • Save tkhk/edf0967645cc13840d765cc36e60db35 to your computer and use it in GitHub Desktop.
Save tkhk/edf0967645cc13840d765cc36e60db35 to your computer and use it in GitHub Desktop.
github actions キャッシュメモ

github actions のキャッシュメモ

2022-11-02 現在

容量と削除

  • リポジトリ全体で最大 10 GB
    • キャッシュ数に制限はない
  • 7 日間アクセスがないキャッシュは削除される
  • 10GB を超えると古いものから削除される

ref. https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#usage-limits-and-eviction-policy

キャッシュへのアクセス

  • キャッシュはブランチとキーでアクセスできる
  • キャッシュはブランチ毎に分けられている
    • ただし親のブランチのキャッシュにはアクセスできる
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment