You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that actions/checkout does not cache LFS files between workflow runs in a repo when the action is used with lfs: true so that the quota is affected by every run: actions/checkout#165
As far as I can tell, some logic around the pure cache action is necessary to cache files and compute whether something is a cache hit or miss. This is what is provided by the action I linked (or possibly even better what this comment does because it uses restore-keys). So I think it would be good to take a closer look at these two options which both use actions/cache internally.
GitHub has a minimal free quota for LFS https://docs.github.com/en/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage
It seems that
actions/checkout
does not cache LFS files between workflow runs in a repo when the action is used withlfs: true
so that the quota is affected by every run: actions/checkout#165Consider using https://github.com/nschloe/action-cached-lfs-checkout which is able to cache LFS files.
The text was updated successfully, but these errors were encountered: