Luca2
January 12, 2026, 2:19pm
1
Hey, since the new update my workflow is not working anymore like it should be. The schedule node is not working. I scheduled it for every 8 hours but it only works when I execute it manually. Even though it is published.
is there anything I forgot?
Kind regards
Thank you
Hey @Luca2 ,
How did you confirm that it isn’t working?
Did you wait more than 8 hours after publishing? at least two cycles (up to 16 hours) to confirm?
This rpely might explain the logic:
Hi @Daanm7
This is interesting!
I run quite a few schedule triggers myself, but i always like even numbers like 8h, 4h, 2h, 12h
I finally have a good reason to stick with this habit
With that in mind, here’s my guess as to what’s happening:
What we likely expect: A rolling timer. “Run this workflow, wait 9 hours, run again.”
What this trigger probably does: “Run this whenever the clock hour is divisible by 9.”
Since 24 is not divisible by 9, the execution hours are like…
Just in case that’s correct (hope someone can confirm or correct it if it’s not).
hmm what’s your n8n version?
I think I read something about this in the release notes, not sure if it’s related,
fixed in v2.4:
master ← pay-4350-question-v203-git-environments-behaviour
opened 01:43PM - 05 Jan 26 UTC
## Summary
Fixes an issue where active workflows were not updated to run … the new version after pulling changes from git. They continued running the old version instead of the newly pulled code.
## Problem
When pulling workflow changes from git:
- Already active workflows were deactivated and reactivated
- BUT they kept running the **old version** instead of the new pulled version
- The `activeVersionId` was not updated to the new `versionId`
## Solution
1. Use `workflowRepository.publishVersion()` to properly publish the new version
2. Update `activeVersionId` to the new version before reactivating
3. Ensure `versionId` is always updated in the `finally` block
## Related Linear tickets, Github issues, and Community forum posts
https://linear.app/n8n/issue/PAY-4350/question-v203-git-environments-behaviour
## Review / Merge checklist
- [X] PR title and summary are descriptive. ([conventions](../blob/master/.github/pull_request_title_conventions.md))
- [ ] [Docs updated](https://github.com/n8n-io/n8n-docs) or follow-up ticket created.
- [X] Tests included.
- [ ] PR Labeled with `release/backport` (if the PR is an urgent fix that needs to be backported)
So in the meantime, try updating to the latest version
Luca2
January 15, 2026, 11:13am
6
I have the latest version. For new workflows the schedule node works but for older it didnt work.
Honestly idk, but if the new workflows are working and it’s urgent then copy the old workflow to a new one and keep the original as a backup (if you wanna keep the history) in case you find a solution.
1 Like