Skip to content

Commit 9492109

Browse files
committed
Merge remote-tracking branch 'origin/dev' into doc-fix
2 parents 5b13ec3 + cee268b commit 9492109

File tree

7 files changed

+17
-14
lines changed

7 files changed

+17
-14
lines changed

.github/workflows/build-deploy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
packages: write
3030
steps:
3131
- name: Checkout repository
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
# https://github.com/actions/setup-python
3434
- name: Set up Python
3535
uses: actions/setup-python@v5
@@ -71,7 +71,7 @@ jobs:
7171

7272
steps:
7373
- name: Checkout repository
74-
uses: actions/checkout@v4
74+
uses: actions/checkout@v5
7575
# https://github.com/actions/setup-python
7676
- name: Set up Python
7777
uses: actions/setup-python@v5
@@ -109,9 +109,9 @@ jobs:
109109

110110
steps:
111111
- name: Checkout repository
112-
uses: actions/checkout@v4
112+
uses: actions/checkout@v5
113113
- name: Download Python package
114-
uses: actions/download-artifact@v4.3.0
114+
uses: actions/download-artifact@v5.0.0
115115
with:
116116
name: python-package
117117
path: dist/
@@ -121,15 +121,15 @@ jobs:
121121
# https://github.com/docker/login-action
122122
- name: Log into Docker Hub
123123
if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags') || github.ref_name == 'dev') && github.repository == 'AppDaemon/appdaemon'
124-
uses: docker/login-action@v3.4.0
124+
uses: docker/login-action@v3.5.0
125125
with:
126126
username: ${{ secrets.DOCKERHUB_USERNAME }}
127127
password: ${{ secrets.DOCKERHUB_PASSWORD }}
128128
# Extract metadata (tags, labels) for Docker
129129
# https://github.com/docker/metadata-action
130130
- name: Extract Docker metadata
131131
id: meta
132-
uses: docker/metadata-action@v5.7.0
132+
uses: docker/metadata-action@v5.8.0
133133
with:
134134
images: ${{ env.IMAGE_NAME }}
135135
# Customize the generation of Docker `latest` tag

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
- name: Annotate locations with typos
2323
uses: codespell-project/codespell-problem-matcher@v1
2424
- name: Codespell

.github/workflows/python-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
lint:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- name: Install uv and set the python version
1717
id: setup-uv
1818
uses: astral-sh/setup-uv@v6
@@ -47,7 +47,7 @@ jobs:
4747
python-version: ["3.10", "3.11", "3.12"]
4848

4949
steps:
50-
- uses: actions/checkout@v4
50+
- uses: actions/checkout@v5
5151
- name: Install uv and set the python version
5252
id: setup-uv
5353
uses: astral-sh/setup-uv@v6

.github/workflows/stale-issues.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: question, wait-response
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/stale@v9
26+
- uses: actions/stale@v10
2727
with:
2828
stale-issue-message: 'This issue is stale because it has been open for 45 days with no activity. Remove stale label or comment or this will be closed in 15 days.'
2929
close-issue-message: 'Please feel free re-open this issue if you have new information available'
@@ -38,7 +38,7 @@ jobs:
3838
name: without label
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/stale@v9
41+
- uses: actions/stale@v10
4242
with:
4343
stale-issue-message: 'This issue is stale because it has been open for 6 months with no activity. Remove stale label or comment or this will be closed in 15 days.'
4444
close-issue-message: 'Please feel free re-open this issue if you have new information available'

appdaemon/py.typed

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

docs/APPGUIDE.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ doesn't need to reference or know anything about the app that provides the servi
472472
`service registration <#service-registration>`__ for more details on how to register services.
473473

474474
Sometimes in development it's useful to intentionally create a dependency so that apps get reloaded together as files
475-
change. This can be done with the ``dependencies`` direction in the app configuration.
475+
change. This can be done with the ``dependencies`` directive in the app configuration.
476476

477477
.. code-block:: yaml
478478
:emphasize-lines: 9
@@ -488,7 +488,7 @@ change. This can be done with the ``dependencies`` direction in the app configur
488488
dependencies:
489489
- my_provider
490490
491-
In this example, both apps would get reloaded if anything in `provider.py` changes, and the ``my_provider`` app is
491+
In this example, both apps would get reloaded if anything in `provider.py` changes, and the ``my_consumer`` app is
492492
guaranteed to be loaded after the ``my_provider`` app.
493493

494494
Imports

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ classifiers= [
3939
"Programming Language :: Python :: 3.10",
4040
"Programming Language :: Python :: 3.11",
4141
"Programming Language :: Python :: 3.12",
42-
"Topic :: Home Automation",
42+
"Programming Language :: Python :: 3.13",
43+
"Topic :: Home Automation",
44+
"Typing :: Typed",
4345
]
4446

4547
[project.urls]

0 commit comments

Comments
 (0)