Skip to content

Commit a2425b5

Browse files
Bump the github-actions group across 1 directory with 6 updates
Bumps the github-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `6` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5.4.3` | `5.5.1` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) Updates `codecov/codecov-action` from 5.4.3 to 5.5.1 - [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.4.3...v5.5.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: 5.5.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent cee159d commit a2425b5

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/codeql.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Check out code from GitHub
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Initialize CodeQL
19-
uses: github/codeql-action/init@v3
19+
uses: github/codeql-action/init@v4
2020
- name: Perform CodeQL Analysis
21-
uses: github/codeql-action/analyze@v3
21+
uses: github/codeql-action/analyze@v4

.github/workflows/linting.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ jobs:
6464

6565
steps:
6666
- name: Check out code from GitHub
67-
uses: actions/checkout@v4
67+
uses: actions/checkout@v5
6868

6969
- name: Set up Python 3.13
7070
id: python
71-
uses: actions/setup-python@v5
71+
uses: actions/setup-python@v6
7272
with:
7373
python-version: 3.13
7474

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Check out code from GitHub
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717

1818
- name: Set up Python 3.13
1919
id: python
20-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v6
2121
with:
2222
python-version: 3.13
2323

.github/workflows/tests.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jobs:
2121

2222
steps:
2323
- name: Check out code from GitHub
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525

2626
- name: 🏗 Set up Poetry
2727
run: pipx install poetry
2828

2929
- name: Set up Python ${{ matrix.python }}
3030
id: python
31-
uses: actions/setup-python@v5
31+
uses: actions/setup-python@v6
3232
with:
3333
python-version: ${{ matrix.python }}
3434
cache: "poetry"
@@ -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@v4
48+
uses: actions/upload-artifact@v5
4949
with:
5050
name: coverage-${{ matrix.python }}-${{ matrix.os }}
5151
include-hidden-files: true
@@ -56,19 +56,19 @@ jobs:
5656
needs: pytest
5757
steps:
5858
- name: Check out code from GitHub
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v5
6060
with:
6161
fetch-depth: 0
6262

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

6666
- name: 🏗 Set up Poetry
6767
run: pipx install poetry
6868

6969
- name: Set up Python 3.13
7070
id: python
71-
uses: actions/setup-python@v5
71+
uses: actions/setup-python@v6
7272
with:
7373
python-version: 3.13
7474
cache: "poetry"
@@ -97,7 +97,7 @@ jobs:
9797
poetry run coverage xml -i
9898
9999
- name: Upload coverage report
100-
uses: codecov/codecov-action@v5.4.3
100+
uses: codecov/codecov-action@v5.5.1
101101
with:
102102
fail_ci_if_error: true
103103
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)