Skip to content

Commit d02b1d4

Browse files
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](actions/cache@v4...v5) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@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](codecov/codecov-action@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] <support@github.com>
1 parent 82a2f24 commit d02b1d4

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/linting.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
echo "::set-output name=dir::$(pip cache dir)"
7979
8080
- name: Restore cached Python PIP packages
81-
uses: actions/cache@v4
81+
uses: actions/cache@v5
8282
with:
8383
path: ${{ steps.pip-cache.outputs.dir }}
8484
key: pip-${{ runner.os }}-v1-${{ steps.python.outputs.python-version }}-${{ hashFiles('.github/workflows/requirements.txt') }}
@@ -93,7 +93,7 @@ jobs:
9393
9494
- name: Restore cached Python virtual environment
9595
id: cached-poetry-dependencies
96-
uses: actions/cache@v4
96+
uses: actions/cache@v5
9797
with:
9898
path: .venv
9999
key: >-

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
echo "::set-output name=dir::$(pip cache dir)"
2828
2929
- name: Restore cached Python PIP packages
30-
uses: actions/cache@v4
30+
uses: actions/cache@v5
3131
with:
3232
path: ${{ steps.pip-cache.outputs.dir }}
3333
key: pip-${{ runner.os }}-v1-${{ steps.python.outputs.python-version }}-${{ hashFiles('.github/workflows/requirements.txt') }}
@@ -42,7 +42,7 @@ jobs:
4242
4343
- name: Restore cached Python virtual environment
4444
id: cached-poetry-dependencies
45-
uses: actions/cache@v4
45+
uses: actions/cache@v5
4646
with:
4747
path: .venv
4848
key: >-

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: poetry run pytest --cov homewizard_energy tests
4646

4747
- name: Upload coverage artifact
48-
uses: actions/upload-artifact@v5
48+
uses: actions/upload-artifact@v6
4949
with:
5050
name: coverage-${{ matrix.python }}-${{ matrix.os }}
5151
include-hidden-files: true
@@ -61,7 +61,7 @@ jobs:
6161
fetch-depth: 0
6262

6363
- name: Download coverage data
64-
uses: actions/download-artifact@v6
64+
uses: actions/download-artifact@v7
6565

6666
- name: 🏗 Set up Poetry
6767
run: pipx install poetry
@@ -81,7 +81,7 @@ jobs:
8181
8282
- name: Restore cached Python virtual environment
8383
id: cached-poetry-dependencies
84-
uses: actions/cache@v4
84+
uses: actions/cache@v5
8585
with:
8686
path: .venv
8787
key: >-
@@ -97,7 +97,7 @@ jobs:
9797
poetry run coverage xml -i
9898
9999
- name: Upload coverage report
100-
uses: codecov/codecov-action@v5.5.1
100+
uses: codecov/codecov-action@v5.5.2
101101
with:
102102
fail_ci_if_error: true
103103
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)