From 6e7eda7d54cf939ea5b06be64dd07f5b9c0ff467 Mon Sep 17 00:00:00 2001 From: Giorgio Ravera Date: Mon, 24 Aug 2026 09:21:11 +0200 Subject: [PATCH] Upgrade actions from v4 to v5 --- .github/workflows/homeassistant-ci.yaml | 6 +++--- .github/workflows/nightly-check.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/homeassistant-ci.yaml b/.github/workflows/homeassistant-ci.yaml index bb899218..0ea6f2ec 100644 --- a/.github/workflows/homeassistant-ci.yaml +++ b/.github/workflows/homeassistant-ci.yaml @@ -29,13 +29,13 @@ jobs: # CHECKOUT # --------------------------------------------------------- - name: ⤵️ Check out configuration from GitHub - uses: actions/checkout@v4 + uses: actions/checkout@v5 # --------------------------------------------------------- # CACHE PIP # --------------------------------------------------------- - name: ♻️ Cache pip - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -46,7 +46,7 @@ jobs: # CACHE NPM # --------------------------------------------------------- - name: ♻️ Cache npm - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.npm key: ${{ runner.os }}-npm-cache diff --git a/.github/workflows/nightly-check.yaml b/.github/workflows/nightly-check.yaml index 95dfcd39..7f14e26e 100644 --- a/.github/workflows/nightly-check.yaml +++ b/.github/workflows/nightly-check.yaml @@ -21,13 +21,13 @@ jobs: # CHECKOUT # --------------------------------------------------------- - name: ⤵️ Check out configuration from GitHub - uses: actions/checkout@v4 + uses: actions/checkout@v5 # --------------------------------------------------------- # CACHE PIP # --------------------------------------------------------- - name: ♻️ Cache pip - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -38,7 +38,7 @@ jobs: # CACHE NPM # --------------------------------------------------------- - name: ♻️ Cache npm - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.npm key: ${{ runner.os }}-npm-cache -- 2.47.3