Comment: As others have mentioned, where you went wrong was going from $5^k\times 5-1$ to $5\times 4r$. If I were tasked with proving that $5^n-1$ is divisible by $4$ for all $n\geq 0$, then I would use Timbuc's method for certain because it minimizes legwork, but I imagine you were asked to prove the problem in question using an inductive argument. As written about before, writing up an induction proof is a bit of an art form. The more advanced you become and the more advanced your readership is, the more you can afford to leave out many "unimportant" details such as "trivial derivations" and the like, but I doubt that is what is expected of you here. On the contrary, I imagine your goal is to provide a clear, clean induction proof, and that is really the only reason why I am answering--I thought I would try to provide a clear, polished way of proving your result using induction. The proof outlined below is virtually identical to the proof given here where the goal was to prove that $6^n-1$ is divisible by $5$ for all $n\geq 1$. Hopefully you will find what follows below to be helpful and, most of all, clear.
For $n\geq 0$, let $S(n)$ denote the statement
$$
S(n) : 4\mid(5^n-1)\Longleftrightarrow 5^n-1=4m, m\in\mathbb{Z}.
$$
Base case ($n=0$): $S(0)$ says that $4\mid(5^0-1)$, and this is true.
Inductive step: Fix some $k\geq 0$ and assume that $S(k)$ is true where
$$
S(k) : 4\mid(5^k-1)\Longleftrightarrow 5^k-1=4\ell, \ell\in\mathbb{Z}.
$$
To be proved is that $S(k+1)$ follows where
$$
S(k+1) : 4\mid(5^{k+1}-1)\Longleftrightarrow 5^{k+1}-1=4\eta, \eta\in\mathbb{Z}.
$$
Beginning with the left-hand side of $S(k+1)$,
\begin{align}
5^{k+1} - 1 &= 5^k\cdot 5-1\tag{by definition}\\[0.5em]
&= (4\ell+1)\cdot 5-1\tag{by $S(k)$, the ind. hyp.}\\[0.5em]
&= 5\cdot 4\ell+4\tag{expand}\\[0.5em]
&= 4(5\ell+1)\tag{factor out $4$}\\[0.5em]
&= 4\eta.\tag{$\eta=5\ell+1; \eta\in\mathbb{Z}$}
\end{align}
we end up at the right-hand side of $S(k+1)$, completing the inductive step.
Thus, by mathematical induction, the statement $S(n)$ is true for all $n\geq 0$. $\blacksquare$