From cb4f0d0f0395c8781c937311245cf7b428cb2687 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 05:01:35 +0000 Subject: [PATCH] Bump the github-actions group with 4 updates Bumps the github-actions group with 4 updates: [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/cache` from 4 to 5 - [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/v4...v5) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) Updates `codecov/codecov-action` from 5.5.1 to 5.5.2 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v5.5.1...v5.5.2) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: 5.5.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/linting.yaml | 4 ++-- .github/workflows/release.yaml | 4 ++-- .github/workflows/tests.yaml | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/linting.yaml b/.github/workflows/linting.yaml index 7e11d7e..092407f 100644 --- a/.github/workflows/linting.yaml +++ b/.github/workflows/linting.yaml @@ -78,7 +78,7 @@ jobs: echo "::set-output name=dir::$(pip cache dir)" - name: Restore cached Python PIP packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.pip-cache.outputs.dir }} key: pip-${{ runner.os }}-v1-${{ steps.python.outputs.python-version }}-${{ hashFiles('.github/workflows/requirements.txt') }} @@ -93,7 +93,7 @@ jobs: - name: Restore cached Python virtual environment id: cached-poetry-dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .venv key: >- diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9437a6b..51b66ff 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -27,7 +27,7 @@ jobs: echo "::set-output name=dir::$(pip cache dir)" - name: Restore cached Python PIP packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.pip-cache.outputs.dir }} key: pip-${{ runner.os }}-v1-${{ steps.python.outputs.python-version }}-${{ hashFiles('.github/workflows/requirements.txt') }} @@ -42,7 +42,7 @@ jobs: - name: Restore cached Python virtual environment id: cached-poetry-dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .venv key: >- diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 1d13b53..aacb271 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -45,7 +45,7 @@ jobs: run: poetry run pytest --cov homewizard_energy tests - name: Upload coverage artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: coverage-${{ matrix.python }}-${{ matrix.os }} include-hidden-files: true @@ -61,7 +61,7 @@ jobs: fetch-depth: 0 - name: Download coverage data - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 - name: 🏗 Set up Poetry run: pipx install poetry @@ -81,7 +81,7 @@ jobs: - name: Restore cached Python virtual environment id: cached-poetry-dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .venv key: >- @@ -97,7 +97,7 @@ jobs: poetry run coverage xml -i - name: Upload coverage report - uses: codecov/codecov-action@v5.5.1 + uses: codecov/codecov-action@v5.5.2 with: fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }}