From 7ed27c0dbb8816e67ca8ad55675249dd566bafd2 Mon Sep 17 00:00:00 2001 From: Giorgio Ravera Date: Tue, 7 Apr 2026 10:17:18 +0200 Subject: [PATCH] fixed ci actions --- .github/workflows/homeassistant-ci.yaml | 7 +++++-- .github/workflows/nightly-check.yaml | 3 +++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/homeassistant-ci.yaml b/.github/workflows/homeassistant-ci.yaml index 2f06a678..0ee9d160 100644 --- a/.github/workflows/homeassistant-ci.yaml +++ b/.github/workflows/homeassistant-ci.yaml @@ -25,12 +25,15 @@ jobs: steps: - name: ⤵️ Check out configuration from GitHub uses: actions/checkout@v4 + with: + fetch-depth: 0 + clean: true # --------------------------------------------------------- # CACHE PIP # --------------------------------------------------------- - name: ♻️ Cache pip - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -41,7 +44,7 @@ jobs: # CACHE NPM # --------------------------------------------------------- - name: ♻️ Cache npm - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.npm key: ${{ runner.os }}-npm-cache diff --git a/.github/workflows/nightly-check.yaml b/.github/workflows/nightly-check.yaml index b0a98abb..aff14e21 100644 --- a/.github/workflows/nightly-check.yaml +++ b/.github/workflows/nightly-check.yaml @@ -19,6 +19,9 @@ jobs: steps: - name: ⤵️ Checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 + clean: true - name: 🔑 Dummy secrets run: | -- 2.47.3