Skip to content

Commit 38314e7

Browse files
Bump actions/cache from 2.1.7 to 4.0.2
Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 4.0.2. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v2.1.7...v4.0.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a8dae97 commit 38314e7

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

.github/workflows/ci.yaml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
env.HA_SHORT_VERSION }}-$(date -u '+%Y-%m-%dT%H:%M:%s')"
172172
- name: Restore base Python virtual environment
173173
id: cache-venv
174-
uses: actions/cache@v2.1.7
174+
uses: actions/cache@v4.0.2
175175
with:
176176
path: venv
177177
key: >-
@@ -188,7 +188,7 @@ jobs:
188188
# ${{ runner.os }}-${{ steps.python.outputs.python-version }}-base-venv-${{ env.CACHE_VERSION }}-
189189
- name: Restore pip wheel cache
190190
if: steps.cache-venv.outputs.cache-hit != 'true'
191-
uses: actions/cache@v2.1.7
191+
uses: actions/cache@v4.0.2
192192
with:
193193
path: ${{ env.PIP_CACHE }}
194194
key: >-
@@ -211,7 +211,7 @@ jobs:
211211
hashFiles('.pre-commit-config.yaml') }}"
212212
- name: Restore pre-commit environment from cache
213213
id: cache-precommit
214-
uses: actions/cache@v2.1.7
214+
uses: actions/cache@v4.0.2
215215
with:
216216
path: ${{ env.PRE_COMMIT_CACHE }}
217217
key: >-
@@ -240,7 +240,7 @@ jobs:
240240
python-version: ${{ env.DEFAULT_PYTHON }}
241241
- name: Restore base Python virtual environment
242242
id: cache-venv
243-
uses: actions/cache@v2.1.7
243+
uses: actions/cache@v4.0.2
244244
with:
245245
path: venv
246246
key: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{
@@ -252,7 +252,7 @@ jobs:
252252
exit 1
253253
- name: Restore pre-commit environment from cache
254254
id: cache-precommit
255-
uses: actions/cache@v2.1.7
255+
uses: actions/cache@v4.0.2
256256
with:
257257
path: ${{ env.PRE_COMMIT_CACHE }}
258258
key: ${{ runner.os }}-${{ needs.prepare-base.outputs.pre-commit-key }}
@@ -290,7 +290,7 @@ jobs:
290290
python-version: ${{ env.DEFAULT_PYTHON }}
291291
- name: Restore base Python virtual environment
292292
id: cache-venv
293-
uses: actions/cache@v2.1.7
293+
uses: actions/cache@v4.0.2
294294
with:
295295
path: venv
296296
key: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{
@@ -302,7 +302,7 @@ jobs:
302302
exit 1
303303
- name: Restore pre-commit environment from cache
304304
id: cache-precommit
305-
uses: actions/cache@v2.1.7
305+
uses: actions/cache@v4.0.2
306306
with:
307307
path: ${{ env.PRE_COMMIT_CACHE }}
308308
key: ${{ runner.os }}-${{ needs.prepare-base.outputs.pre-commit-key }}
@@ -341,7 +341,7 @@ jobs:
341341
python-version: ${{ env.DEFAULT_PYTHON }}
342342
- name: Restore base Python virtual environment
343343
id: cache-venv
344-
uses: actions/cache@v2.1.7
344+
uses: actions/cache@v4.0.2
345345
with:
346346
path: venv
347347
key: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{
@@ -353,7 +353,7 @@ jobs:
353353
exit 1
354354
- name: Restore pre-commit environment from cache
355355
id: cache-precommit
356-
uses: actions/cache@v2.1.7
356+
uses: actions/cache@v4.0.2
357357
with:
358358
path: ${{ env.PRE_COMMIT_CACHE }}
359359
key: ${{ runner.os }}-${{ needs.prepare-base.outputs.pre-commit-key }}
@@ -383,7 +383,7 @@ jobs:
383383
python-version: ${{ env.DEFAULT_PYTHON }}
384384
- name: Restore base Python virtual environment
385385
id: cache-venv
386-
uses: actions/cache@v2.1.7
386+
uses: actions/cache@v4.0.2
387387
with:
388388
path: venv
389389
key: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{
@@ -395,7 +395,7 @@ jobs:
395395
exit 1
396396
- name: Restore pre-commit environment from cache
397397
id: cache-precommit
398-
uses: actions/cache@v2.1.7
398+
uses: actions/cache@v4.0.2
399399
with:
400400
path: ${{ env.PRE_COMMIT_CACHE }}
401401
key: ${{ runner.os }}-${{ needs.prepare-base.outputs.pre-commit-key }}
@@ -488,7 +488,7 @@ jobs:
488488
uses: actions/checkout@v3.0.0
489489
- name: Restore full Python ${{ matrix.python-version }} virtual environment
490490
id: cache-venv
491-
uses: actions/cache@v2.1.7
491+
uses: actions/cache@v4.0.2
492492
with:
493493
path: venv
494494
key: ${{ runner.os }}-${{ matrix.python-version }}-${{
@@ -517,7 +517,7 @@ jobs:
517517
python-version: ${{ env.DEFAULT_PYTHON }}
518518
- name: Restore base Python virtual environment
519519
id: cache-venv
520-
uses: actions/cache@v2.1.7
520+
uses: actions/cache@v4.0.2
521521
with:
522522
path: venv
523523
key: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{
@@ -559,7 +559,7 @@ jobs:
559559
env.HA_SHORT_VERSION }}-$(date -u '+%Y-%m-%dT%H:%M:%s')"
560560
- name: Restore full Python ${{ matrix.python-version }} virtual environment
561561
id: cache-venv
562-
uses: actions/cache@v2.1.7
562+
uses: actions/cache@v4.0.2
563563
with:
564564
path: venv
565565
key: >-
@@ -576,7 +576,7 @@ jobs:
576576
# ${{ runner.os }}-${{ matrix.python-version }}-venv-${{ env.CACHE_VERSION }}-
577577
- name: Restore pip wheel cache
578578
if: steps.cache-venv.outputs.cache-hit != 'true'
579-
uses: actions/cache@v2.1.7
579+
uses: actions/cache@v4.0.2
580580
with:
581581
path: ${{ env.PIP_CACHE }}
582582
key: >-
@@ -615,7 +615,7 @@ jobs:
615615
uses: actions/checkout@v3.0.0
616616
- name: Restore full Python ${{ matrix.python-version }} virtual environment
617617
id: cache-venv
618-
uses: actions/cache@v2.1.7
618+
uses: actions/cache@v4.0.2
619619
with:
620620
path: venv
621621
key: ${{ runner.os }}-${{ matrix.python-version }}-${{
@@ -657,7 +657,7 @@ jobs:
657657
uses: actions/checkout@v3.0.0
658658
- name: Restore full Python ${{ matrix.python-version }} virtual environment
659659
id: cache-venv
660-
uses: actions/cache@v2.1.7
660+
uses: actions/cache@v4.0.2
661661
with:
662662
path: venv
663663
key: ${{ runner.os }}-${{ matrix.python-version }}-${{
@@ -701,7 +701,7 @@ jobs:
701701
uses: actions/checkout@v3.0.0
702702
- name: Restore full Python ${{ matrix.python-version }} virtual environment
703703
id: cache-venv
704-
uses: actions/cache@v2.1.7
704+
uses: actions/cache@v4.0.2
705705
with:
706706
path: venv
707707
key: ${{ runner.os }}-${{ matrix.python-version }}-${{
@@ -744,7 +744,7 @@ jobs:
744744
uses: actions/checkout@v3.0.0
745745
- name: Restore full Python ${{ matrix.python-version }} virtual environment
746746
id: cache-venv
747-
uses: actions/cache@v2.1.7
747+
uses: actions/cache@v4.0.2
748748
with:
749749
path: venv
750750
key: ${{ runner.os }}-${{ matrix.python-version }}-${{

0 commit comments

Comments
 (0)