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