From efc9f85bee923830365eed5d454802667b946c3e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Jan 2023 06:01:13 +0000 Subject: [PATCH] Bump actions/cache from 3.0.4 to 3.2.3 Bumps [actions/cache](https://github.com/actions/cache) from 3.0.4 to 3.2.3. - [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.0.4...v3.2.3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .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 1d7a5c95986e1..2eda276e0d8e4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -173,7 +173,7 @@ jobs: env.HA_SHORT_VERSION }}-$(date -u '+%Y-%m-%dT%H:%M:%s')" - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: venv key: >- @@ -190,7 +190,7 @@ jobs: # ${{ runner.os }}-${{ steps.python.outputs.python-version }}-base-venv-${{ env.CACHE_VERSION }}- - name: Restore pip wheel cache if: steps.cache-venv.outputs.cache-hit != 'true' - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: ${{ env.PIP_CACHE }} key: >- @@ -213,7 +213,7 @@ jobs: hashFiles('.pre-commit-config.yaml') }}" - name: Restore pre-commit environment from cache id: cache-precommit - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: ${{ env.PRE_COMMIT_CACHE }} key: >- @@ -242,7 +242,7 @@ jobs: python-version: ${{ env.DEFAULT_PYTHON }} - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: venv key: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ @@ -254,7 +254,7 @@ jobs: exit 1 - name: Restore pre-commit environment from cache id: cache-precommit - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: ${{ env.PRE_COMMIT_CACHE }} key: ${{ runner.os }}-${{ needs.prepare-base.outputs.pre-commit-key }} @@ -292,7 +292,7 @@ jobs: python-version: ${{ env.DEFAULT_PYTHON }} - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: venv key: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ @@ -304,7 +304,7 @@ jobs: exit 1 - name: Restore pre-commit environment from cache id: cache-precommit - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: ${{ env.PRE_COMMIT_CACHE }} key: ${{ runner.os }}-${{ needs.prepare-base.outputs.pre-commit-key }} @@ -343,7 +343,7 @@ jobs: python-version: ${{ env.DEFAULT_PYTHON }} - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: venv key: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ @@ -355,7 +355,7 @@ jobs: exit 1 - name: Restore pre-commit environment from cache id: cache-precommit - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: ${{ env.PRE_COMMIT_CACHE }} key: ${{ runner.os }}-${{ needs.prepare-base.outputs.pre-commit-key }} @@ -385,7 +385,7 @@ jobs: python-version: ${{ env.DEFAULT_PYTHON }} - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: venv key: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ @@ -397,7 +397,7 @@ jobs: exit 1 - name: Restore pre-commit environment from cache id: cache-precommit - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: ${{ env.PRE_COMMIT_CACHE }} key: ${{ runner.os }}-${{ needs.prepare-base.outputs.pre-commit-key }} @@ -503,7 +503,7 @@ jobs: uses: actions/checkout@v3.0.2 - name: Restore full Python ${{ matrix.python-version }} virtual environment id: cache-venv - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: venv key: ${{ runner.os }}-${{ matrix.python-version }}-${{ @@ -532,7 +532,7 @@ jobs: python-version: ${{ env.DEFAULT_PYTHON }} - name: Restore base Python virtual environment id: cache-venv - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: venv key: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ @@ -574,7 +574,7 @@ jobs: env.HA_SHORT_VERSION }}-$(date -u '+%Y-%m-%dT%H:%M:%s')" - name: Restore full Python ${{ matrix.python-version }} virtual environment id: cache-venv - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: venv key: >- @@ -591,7 +591,7 @@ jobs: # ${{ runner.os }}-${{ matrix.python-version }}-venv-${{ env.CACHE_VERSION }}- - name: Restore pip wheel cache if: steps.cache-venv.outputs.cache-hit != 'true' - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: ${{ env.PIP_CACHE }} key: >- @@ -630,7 +630,7 @@ jobs: uses: actions/checkout@v3.0.2 - name: Restore full Python ${{ matrix.python-version }} virtual environment id: cache-venv - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: venv key: ${{ runner.os }}-${{ matrix.python-version }}-${{ @@ -672,7 +672,7 @@ jobs: uses: actions/checkout@v3.0.2 - name: Restore full Python ${{ matrix.python-version }} virtual environment id: cache-venv - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: venv key: ${{ runner.os }}-${{ matrix.python-version }}-${{ @@ -716,7 +716,7 @@ jobs: uses: actions/checkout@v3.0.2 - name: Restore full Python ${{ matrix.python-version }} virtual environment id: cache-venv - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: venv key: ${{ runner.os }}-${{ matrix.python-version }}-${{ @@ -759,7 +759,7 @@ jobs: uses: actions/checkout@v3.0.2 - name: Restore full Python ${{ matrix.python-version }} virtual environment id: cache-venv - uses: actions/cache@v3.0.4 + uses: actions/cache@v3.2.3 with: path: venv key: ${{ runner.os }}-${{ matrix.python-version }}-${{