Test failing due to cache version

Posted by Ife Odugbesan

29 days ago

1

test github

Error message:

Error: Missing download info for actions/cache@v1


The error "Missing download info for actions/cache@v1" indicates that the GitHub action you're using for caching, specifically version 1, is no longer supported. This is because GitHub has deprecated and eventually retired actions/cache@v1-v2, and you need to upgrade to a newer version. 


steps:
  - uses: actions/cache@v1 # CHANGE THIS LINE TO THE EXAMPLE BELOW

steps:
  - uses: actions/cache@v3 # Or v4