Skip to content

Commit

Permalink
Bump actions/setup-python from 4.7.1 to 5.0.0
Browse files Browse the repository at this point in the history
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4.7.1 to 5.0.0.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v4.7.1...v5.0.0)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and claha committed Dec 15, 2023
1 parent 7a54d73 commit afedd6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pullpush.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4.7.1
- uses: actions/setup-python@v5.0.0
with:
python-version: 3.x
- uses: pre-commit/[email protected]
2 changes: 1 addition & 1 deletion custom_components/tekniska_verken_garbage/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ async def async_update(self):
).date()
if garbage_day < today:
garbage_day = datetime.strptime(
f"{today.year+1}-{month}-{day}", "%Y-%m-%d"
f"{today.year + 1}-{month}-{day}", "%Y-%m-%d"
).date()
self._state = garbage_day
break

0 comments on commit afedd6b

Please sign in to comment.