From 69d262af1b0048169df91f3e3887c2ea661fd654 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2026 22:41:44 +0200 Subject: [PATCH] Bump actions/cache from 5 to 6 (#4) Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/homeassistant-ci.yaml | 4 ++-- .github/workflows/nightly-check.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/homeassistant-ci.yaml b/.github/workflows/homeassistant-ci.yaml index 0ea6f2ec..7ff2d1f7 100644 --- a/.github/workflows/homeassistant-ci.yaml +++ b/.github/workflows/homeassistant-ci.yaml @@ -35,7 +35,7 @@ jobs: # CACHE PIP # --------------------------------------------------------- - name: ♻️ Cache pip - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -46,7 +46,7 @@ jobs: # CACHE NPM # --------------------------------------------------------- - name: ♻️ Cache npm - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.npm key: ${{ runner.os }}-npm-cache diff --git a/.github/workflows/nightly-check.yaml b/.github/workflows/nightly-check.yaml index 7f14e26e..dbfd71e1 100644 --- a/.github/workflows/nightly-check.yaml +++ b/.github/workflows/nightly-check.yaml @@ -27,7 +27,7 @@ jobs: # CACHE PIP # --------------------------------------------------------- - name: ♻️ Cache pip - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -38,7 +38,7 @@ jobs: # CACHE NPM # --------------------------------------------------------- - name: ♻️ Cache npm - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.npm key: ${{ runner.os }}-npm-cache -- 2.47.3