name: Cache Update on: schedule: - cron: '0 0 * * *' workflow_dispatch: jobs: cache-update: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Update Cache uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }} restore-keys: | ${{ runner.os }}-pip-