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
I am attempting to use buildkit-cache-dance to cache pip dependencies in a GitHub Actions workflow but am encountering issues where the cache is not being used.
I'm not experienced enough with Python to know why it's not working for you, but for nodejs using the pnpm package manager, there are flags that must be set to tell it to give higher priority to the cached files before attempting to download them.
My install script is pnpm install --prefer-offline --frozen-lockfile, where --prefer-offline tells the package manager to give priority to the existing files.
I am attempting to use
buildkit-cache-dance
to cache pip dependencies in a GitHub Actions workflow but am encountering issues where the cache is not being used.My example repo: mgaitan/pip-docker-cache-dance
Consider this commit where I removed a dependency, while supposely the rest are available in the cache.
However the logs indicates that despite the cache directive, pip dependencies are being downloaded again.
I'd appreciate any insights or assistance to resolve this issue.
The text was updated successfully, but these errors were encountered: