Skip to content

Commit

Permalink
Update dependencies (#921)
Browse files Browse the repository at this point in the history
  • Loading branch information
KapJI authored Nov 5, 2024
1 parent 24801f1 commit 2dc9e1b
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ updates:
interval: daily
labels:
- "dependencies"
ignore:
- dependency-name: "crazy-max/ghaction-github-labeler"
versions: ["5.1.0"]
4 changes: 4 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
#
# The repository labels will be automatically configured using this file and
# the GitHub Action https://github.com/marketplace/actions/github-labeler.
- name: automerge
description: Automatically merge by Kodiak
color: d4c5f9

- name: bug
description: Something isn't working
color: d73a4a
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/home-assistant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

env:
DEFAULT_PYTHON: "3.11"
DEFAULT_PYTHON: "3.12"

jobs:
hacs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

env:
PYTHON_VERSION: "3.11"
PYTHON_VERSION: "3.12"

jobs:
pre-commit:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manage-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
uses: actions/checkout@v4

- name: Run Labeler
uses: crazy-max/ghaction-github-labeler@v5.1.0
uses: crazy-max/ghaction-github-labeler@v5.0.0
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:

env:
PYTHON_VERSION: "3.11"
PYTHON_VERSION: "3.12"

jobs:
publish:
Expand Down
9 changes: 6 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-json
Expand All @@ -26,29 +26,32 @@ repos:
entry: poetry run mypy
language: system
types: [python]
require_serial: true
- id: flake8
name: flake8
entry: poetry run flake8
language: system
types: [python]
require_serial: true
- id: pylint
name: pylint
entry: poetry run pylint
language: system
types: [python]
require_serial: true
- id: codespell
name: codespell
entry: poetry run codespell --write-changes
language: system
pass_filenames: false
always_run: true
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.7.1
rev: v3.1.0
hooks:
- id: prettier
exclude: ^custom_components/google_home/manifest\.json$
- repo: https://github.com/cdce8p/python-typing-update
rev: v0.5.1
rev: v0.7.0
hooks:
# Run `python-typing-update` hook manually from time to time
# to update python typing syntax.
Expand Down

0 comments on commit 2dc9e1b

Please sign in to comment.