I noticed gitleaks runs failing today with the following error:
Warning: ReserveCacheError: Unable to reserve cache with key gitleaks-cache-8.24.3-linux-x64, another job may be creating this cache. More details: This legacy service is shutting down, effective April 15, 2025. Migrate to the new service ASAP. For more information: https://gh.io/gha-cache-sunset
It looks like Github is deprecating v1-v2 of actions/cache and gitleaks-action is still using v2.
|
"@actions/cache": "^2.0.2", |
There's a migration guide which says that the changes "should be seamless and fully backward compatible" so this may just need a package bump to fix?
I noticed gitleaks runs failing today with the following error:
Warning: ReserveCacheError: Unable to reserve cache with key gitleaks-cache-8.24.3-linux-x64, another job may be creating this cache. More details: This legacy service is shutting down, effective April 15, 2025. Migrate to the new service ASAP. For more information: https://gh.io/gha-cache-sunsetIt looks like Github is deprecating v1-v2 of
actions/cacheand gitleaks-action is still using v2.gitleaks-action/package.json
Line 4 in f586c14
There's a migration guide which says that the changes "should be seamless and fully backward compatible" so this may just need a package bump to fix?