From a70163042d78ce0305996434f1cb27b5adb1220e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Dec 2022 12:34:33 +0100 Subject: [PATCH] Bump actions/cache from 3.2.0 to 3.2.1 (#84565) Bumps [actions/cache](https://github.com/actions/cache) from 3.2.0 to 3.2.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.2.0...v3.2.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yaml | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4625463dfd0..c5bad20a26f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -176,7 +176,7 @@ jobs: check-latest: true - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache@v3.2.0 + uses: actions/cache@v3.2.1 with: path: venv key: >- @@ -191,7 +191,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.2.0 + uses: actions/cache@v3.2.1 with: path: ${{ env.PRE_COMMIT_CACHE }} key: >- @@ -220,7 +220,7 @@ jobs: check-latest: true - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache/restore@v3.2.0 + uses: actions/cache/restore@v3.2.1 with: path: venv key: >- @@ -233,7 +233,7 @@ jobs: exit 1 - name: Restore pre-commit environment from cache id: cache-precommit - uses: actions/cache/restore@v3.2.0 + uses: actions/cache/restore@v3.2.1 with: path: ${{ env.PRE_COMMIT_CACHE }} key: >- @@ -274,7 +274,7 @@ jobs: check-latest: true - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache/restore@v3.2.0 + uses: actions/cache/restore@v3.2.1 with: path: venv key: >- @@ -287,7 +287,7 @@ jobs: exit 1 - name: Restore pre-commit environment from cache id: cache-precommit - uses: actions/cache/restore@v3.2.0 + uses: actions/cache/restore@v3.2.1 with: path: ${{ env.PRE_COMMIT_CACHE }} key: >- @@ -331,7 +331,7 @@ jobs: check-latest: true - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache/restore@v3.2.0 + uses: actions/cache/restore@v3.2.1 with: path: venv key: >- @@ -344,7 +344,7 @@ jobs: exit 1 - name: Restore pre-commit environment from cache id: cache-precommit - uses: actions/cache/restore@v3.2.0 + uses: actions/cache/restore@v3.2.1 with: path: ${{ env.PRE_COMMIT_CACHE }} key: >- @@ -377,7 +377,7 @@ jobs: check-latest: true - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache/restore@v3.2.0 + uses: actions/cache/restore@v3.2.1 with: path: venv key: >- @@ -390,7 +390,7 @@ jobs: exit 1 - name: Restore pre-commit environment from cache id: cache-precommit - uses: actions/cache/restore@v3.2.0 + uses: actions/cache/restore@v3.2.1 with: path: ${{ env.PRE_COMMIT_CACHE }} key: >- @@ -509,7 +509,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.2.0 + uses: actions/cache@v3.2.1 with: path: venv key: >- @@ -517,7 +517,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.2.0 + uses: actions/cache@v3.2.1 with: path: ${{ env.PIP_CACHE }} key: >- @@ -568,7 +568,7 @@ jobs: check-latest: true - name: Restore full Python ${{ env.DEFAULT_PYTHON }} virtual environment id: cache-venv - uses: actions/cache/restore@v3.2.0 + uses: actions/cache/restore@v3.2.1 with: path: venv key: >- @@ -601,7 +601,7 @@ jobs: check-latest: true - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache/restore@v3.2.0 + uses: actions/cache/restore@v3.2.1 with: path: venv key: >- @@ -635,7 +635,7 @@ jobs: check-latest: true - name: Restore full Python ${{ env.DEFAULT_PYTHON }} virtual environment id: cache-venv - uses: actions/cache/restore@v3.2.0 + uses: actions/cache/restore@v3.2.1 with: path: venv key: >- @@ -680,7 +680,7 @@ jobs: check-latest: true - name: Restore full Python ${{ env.DEFAULT_PYTHON }} virtual environment id: cache-venv - uses: actions/cache/restore@v3.2.0 + uses: actions/cache/restore@v3.2.1 with: path: venv key: >- @@ -729,7 +729,7 @@ jobs: check-latest: true - name: Restore full Python ${{ matrix.python-version }} virtual environment id: cache-venv - uses: actions/cache/restore@v3.2.0 + uses: actions/cache/restore@v3.2.1 with: path: venv key: >- @@ -784,7 +784,7 @@ jobs: check-latest: true - name: Restore full Python ${{ matrix.python-version }} virtual environment id: cache-venv - uses: actions/cache/restore@v3.2.0 + uses: actions/cache/restore@v3.2.1 with: path: venv key: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ @@ -907,7 +907,7 @@ jobs: check-latest: true - name: Restore full Python ${{ matrix.python-version }} virtual environment id: cache-venv - uses: actions/cache/restore@v3.2.0 + uses: actions/cache/restore@v3.2.1 with: path: venv key: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{