diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 86972558882..12884206a4f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -212,7 +212,7 @@ jobs: check-latest: true - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 with: path: venv key: >- @@ -227,7 +227,7 @@ jobs: pip install "$(cat requirements_test.txt | grep pre-commit)" - name: Restore pre-commit environment from cache id: cache-precommit - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 with: path: ${{ env.PRE_COMMIT_CACHE }} lookup-only: true @@ -257,7 +257,7 @@ jobs: check-latest: true - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: venv fail-on-cache-miss: true @@ -266,7 +266,7 @@ jobs: needs.info.outputs.pre-commit_cache_key }} - name: Restore pre-commit environment from cache id: cache-precommit - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: ${{ env.PRE_COMMIT_CACHE }} fail-on-cache-miss: true @@ -303,7 +303,7 @@ jobs: check-latest: true - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: venv fail-on-cache-miss: true @@ -312,7 +312,7 @@ jobs: needs.info.outputs.pre-commit_cache_key }} - name: Restore pre-commit environment from cache id: cache-precommit - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: ${{ env.PRE_COMMIT_CACHE }} fail-on-cache-miss: true @@ -352,7 +352,7 @@ jobs: check-latest: true - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: venv fail-on-cache-miss: true @@ -361,7 +361,7 @@ jobs: needs.info.outputs.pre-commit_cache_key }} - name: Restore pre-commit environment from cache id: cache-precommit - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: ${{ env.PRE_COMMIT_CACHE }} fail-on-cache-miss: true @@ -401,7 +401,7 @@ jobs: check-latest: true - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: venv fail-on-cache-miss: true @@ -410,7 +410,7 @@ jobs: needs.info.outputs.pre-commit_cache_key }} - name: Restore pre-commit environment from cache id: cache-precommit - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: ${{ env.PRE_COMMIT_CACHE }} fail-on-cache-miss: true @@ -439,7 +439,7 @@ jobs: check-latest: true - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: venv fail-on-cache-miss: true @@ -448,7 +448,7 @@ jobs: needs.info.outputs.pre-commit_cache_key }} - name: Restore pre-commit environment from cache id: cache-precommit - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: ${{ env.PRE_COMMIT_CACHE }} fail-on-cache-miss: true @@ -563,7 +563,7 @@ jobs: env.HA_SHORT_VERSION }}-$(date -u '+%Y-%m-%dT%H:%M:%s')" >> $GITHUB_OUTPUT - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 with: path: venv lookup-only: true @@ -572,7 +572,7 @@ jobs: needs.info.outputs.python_cache_key }} - name: Restore pip wheel cache if: steps.cache-venv.outputs.cache-hit != 'true' - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 with: path: ${{ env.PIP_CACHE }} key: >- @@ -626,7 +626,7 @@ jobs: check-latest: true - name: Restore full Python ${{ env.DEFAULT_PYTHON }} virtual environment id: cache-venv - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: venv fail-on-cache-miss: true @@ -658,7 +658,7 @@ jobs: check-latest: true - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: venv fail-on-cache-miss: true @@ -691,7 +691,7 @@ jobs: check-latest: true - name: Restore full Python ${{ env.DEFAULT_PYTHON }} virtual environment id: cache-venv - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: venv fail-on-cache-miss: true @@ -742,7 +742,7 @@ jobs: env.HA_SHORT_VERSION }}-$(date -u '+%Y-%m-%dT%H:%M:%s')" >> $GITHUB_OUTPUT - name: Restore full Python ${{ env.DEFAULT_PYTHON }} virtual environment id: cache-venv - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: venv fail-on-cache-miss: true @@ -750,7 +750,7 @@ jobs: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ needs.info.outputs.python_cache_key }} - name: Restore mypy cache - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 with: path: .mypy_cache key: >- @@ -801,7 +801,7 @@ jobs: check-latest: true - name: Restore full Python ${{ matrix.python-version }} virtual environment id: cache-venv - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: venv fail-on-cache-miss: true @@ -854,7 +854,7 @@ jobs: check-latest: true - name: Restore full Python ${{ matrix.python-version }} virtual environment id: cache-venv - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: venv fail-on-cache-miss: true @@ -980,7 +980,7 @@ jobs: check-latest: true - name: Restore full Python ${{ matrix.python-version }} virtual environment id: cache-venv - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: venv fail-on-cache-miss: true @@ -1088,7 +1088,7 @@ jobs: check-latest: true - name: Restore full Python ${{ matrix.python-version }} virtual environment id: cache-venv - uses: actions/cache/restore@v3.3.0 + uses: actions/cache/restore@v3.3.1 with: path: venv fail-on-cache-miss: true