push-test.yml has a step to install poetry if no cached environment exists. pull-docs.yml does not, and so the poetry command to install dependencies was giving poetry: command not found and killing the workflow. Previous workflow successes all loaded the cached poetry installation. I don't know where the cache entry was added, but it must have expired at some point in the last month.
This adds the install poetry step to pull-docs.yml
push-test.yml has a step to install poetry if no cached environment exists. pull-docs.yml does not, and so the poetry command to install dependencies was giving
poetry: command not found
and killing the workflow. Previous workflow successes all loaded the cached poetry installation. I don't know where the cache entry was added, but it must have expired at some point in the last month.This adds the install poetry step to pull-docs.yml