Step that resets at the field boundary
0 0 */7 * *0 0 * * 0Steps count from the start of the field and reset when the field does, so a step that does not divide the range evenly produces a short final interval before it starts over. It is not wrong — cron does exactly what it says — but the effect surprises people who read */7 as "every seven days".
In the day-of-month field, 0 0 */7 * * fires on the 1st, 8th, 15th, 22nd and 29th, then jumps back to the 1st of the next month. The gap between the 29th and the next 1st is two or three days, not seven, and the firing dates drift relative to the weekday. So this is emphatically not a weekly schedule, even though "every 7 days" sounds like one.
The same trap appears elsewhere. */40 * * * * in minutes fires at :00 and :40, then resets at the top of the hour — a 40-minute gap followed by a 20-minute one. Minute steps that divide 60 evenly (2, 3, 4, 5, 6, 10, 12, 15, 20, 30) stay even; the rest wobble at the hour boundary.
If you want a genuinely weekly cadence, use the day-of-week field: 0 0 * * 0 runs every Sunday, exactly seven days apart, forever. For "every N days" that must stay evenly spaced across month boundaries, standard cron cannot help — you need a job that tracks the interval itself, or a scheduler with real interval support. This finding is informational: if the reset behaviour is fine for your use, no change is needed.
Watch the linter flag it live — the finding below appears the moment the expression is entered: