forked from esphome/esphome
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'esphome:dev' into krahabb3
- Loading branch information
Showing
480 changed files
with
19,422 additions
and
4,107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,12 +17,12 @@ runs: | |
steps: | ||
- name: Set up Python ${{ inputs.python-version }} | ||
id: python | ||
uses: actions/setup-python@v5.2.0 | ||
uses: actions/setup-python@v5.3.0 | ||
with: | ||
python-version: ${{ inputs.python-version }} | ||
- name: Restore Python virtual environment | ||
id: cache-venv | ||
uses: actions/cache/[email protected].1 | ||
uses: actions/cache/[email protected].2 | ||
with: | ||
path: venv | ||
# yamllint disable-line rule:line-length | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Set up Python | ||
uses: actions/setup-python@v5.2.0 | ||
uses: actions/setup-python@v5.3.0 | ||
with: | ||
python-version: "3.11" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ jobs: | |
steps: | ||
- uses: actions/[email protected] | ||
- name: Set up Python | ||
uses: actions/setup-python@v5.2.0 | ||
uses: actions/setup-python@v5.3.0 | ||
with: | ||
python-version: "3.9" | ||
- name: Set up Docker Buildx | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,12 +41,12 @@ jobs: | |
run: echo key="${{ hashFiles('requirements.txt', 'requirements_optional.txt', 'requirements_test.txt') }}" >> $GITHUB_OUTPUT | ||
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | ||
id: python | ||
uses: actions/setup-python@v5.2.0 | ||
uses: actions/setup-python@v5.3.0 | ||
with: | ||
python-version: ${{ env.DEFAULT_PYTHON }} | ||
- name: Restore Python virtual environment | ||
id: cache-venv | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: venv | ||
# yamllint disable-line rule:line-length | ||
|
@@ -219,7 +219,7 @@ jobs: | |
. venv/bin/activate | ||
pytest -vv --cov-report=xml --tb=native tests | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v4 | ||
uses: codecov/codecov-action@v5 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
|
@@ -302,20 +302,22 @@ jobs: | |
|
||
- name: Cache platformio | ||
if: github.ref == 'refs/heads/dev' | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ~/.platformio | ||
key: platformio-${{ matrix.pio_cache_key }} | ||
|
||
- name: Cache platformio | ||
if: github.ref != 'refs/heads/dev' | ||
uses: actions/cache/[email protected].1 | ||
uses: actions/cache/[email protected].2 | ||
with: | ||
path: ~/.platformio | ||
key: platformio-${{ matrix.pio_cache_key }} | ||
|
||
- name: Install clang-tidy | ||
run: sudo apt-get install clang-tidy-14 | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install clang-tidy-14 | ||
- name: Register problem matchers | ||
run: | | ||
|
@@ -397,7 +399,9 @@ jobs: | |
file: ${{ fromJson(needs.list-components.outputs.components) }} | ||
steps: | ||
- name: Install dependencies | ||
run: sudo apt-get install libsdl2-dev | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install libsdl2-dev | ||
- name: Check out code from GitHub | ||
uses: actions/[email protected] | ||
|
@@ -451,7 +455,9 @@ jobs: | |
run: echo ${{ matrix.components }} | ||
|
||
- name: Install dependencies | ||
run: sudo apt-get install libsdl2-dev | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install libsdl2-dev | ||
- name: Check out code from GitHub | ||
uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,7 @@ jobs: | |
steps: | ||
- uses: actions/[email protected] | ||
- name: Set up Python | ||
uses: actions/setup-python@v5.2.0 | ||
uses: actions/setup-python@v5.3.0 | ||
with: | ||
python-version: "3.x" | ||
- name: Set up python environment | ||
|
@@ -65,7 +65,7 @@ jobs: | |
pip3 install build | ||
python3 -m build | ||
- name: Publish | ||
uses: pypa/gh-action-pypi-publish@v1.10.3 | ||
uses: pypa/gh-action-pypi-publish@v1.12.2 | ||
|
||
deploy-docker: | ||
name: Build ESPHome ${{ matrix.platform }} | ||
|
@@ -85,7 +85,7 @@ jobs: | |
steps: | ||
- uses: actions/[email protected] | ||
- name: Set up Python | ||
uses: actions/setup-python@v5.2.0 | ||
uses: actions/setup-python@v5.3.0 | ||
with: | ||
python-version: "3.9" | ||
|
||
|
@@ -141,7 +141,7 @@ jobs: | |
echo name=$(cat /tmp/platform) >> $GITHUB_OUTPUT | ||
- name: Upload digests | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].3 | ||
with: | ||
name: digests-${{ steps.sanitize.outputs.name }} | ||
path: /tmp/digests | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,6 +75,9 @@ cov.xml | |
# pyenv | ||
.python-version | ||
|
||
# asdf | ||
.tool-versions | ||
|
||
# Environments | ||
.env | ||
.venv | ||
|
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.