Time trigger not working anymore

Hello,

i made multiple automations with time triggers and time conditions to run the automation at a given time on a weekday and on another time at the weekend. The following automation was working fine. But lately nearly all my automations with time triggers and conditions like this are not working anymore.
When i start the automation manually it works.

alias: "Luftreiniger: Nacht Modus (Zeit)"
description: ""
trigger:
  - platform: time
    at: "23:30:00"
  - platform: time
    at: "01:00:00"
condition:
  - condition: or
    conditions:
      - condition: time
        after: "23:25:00"
        before: "23:35:00"
        weekday:
          - mon
          - tue
          - wed
          - thu
          - fri
      - condition: time
        after: "00:55:00"
        before: "01:05:00"
        weekday:
          - sat
          - sun
action:
  - service: script.neues_skript
    data: {}
mode: single

Is there something i made wrong or has something changed after an update?

I’m running the newest version of HA, supervisor and OS on a RPi4.

Can you define “not working”?
Not starting at all or starting but actions are not performed?

Were you able to fix this issue?

I’m having an issue not with all my time triggers, but this one:

trigger:
  - platform: time
    at: sensor.pixel_next_alarm

I don’t think that this is the solution for your automation, but i now use a datetime helper for mine.
They now work fine and i have an easier access to the time schedules.